6 writes to _bytes
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (6)
1278_bytes = byteStart; 1299_bytes -= numBytes; // Didn't encode these bytes 1318_bytes -= numBytes; // Didn't encode these bytes 1327_bytes += count; 1342return *(_bytes++); 1383_bytes -= byteBuffer.Length; // Didn't use how many ever bytes we're falling back
8 references to _bytes
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (8)
1289_fallbackBuffer.InternalInitialize(_bytes, _charEnd); 1330internal unsafe bool MoreData => _bytes < _byteEnd; 1333internal unsafe bool EvenMoreData(int count) => _bytes <= _byteEnd - count; 1339Debug.Assert(_bytes < _byteEnd, "[EncodingCharBuffer.GetNextByte]Expected more date"); 1340if (_bytes >= _byteEnd) 1345internal unsafe int BytesUsed => (int)(_bytes - _byteStart); 1380if (!_fallbackBuffer.InternalFallback(byteBuffer, _bytes, ref _chars)) 1392_charCountResult += _fallbackBuffer.InternalFallback(byteBuffer, _bytes);