6 writes to _bytes
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (6)
1288_bytes = byteStart; 1309_bytes -= numBytes; // Didn't encode these bytes 1328_bytes -= numBytes; // Didn't encode these bytes 1337_bytes += count; 1352return *(_bytes++); 1393_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)
1299_fallbackBuffer.InternalInitialize(_bytes, _charEnd); 1340internal unsafe bool MoreData => _bytes < _byteEnd; 1343internal unsafe bool EvenMoreData(int count) => _bytes <= _byteEnd - count; 1349Debug.Assert(_bytes < _byteEnd, "[EncodingCharBuffer.GetNextByte]Expected more date"); 1350if (_bytes >= _byteEnd) 1355internal unsafe int BytesUsed => (int)(_bytes - _byteStart); 1390if (!_fallbackBuffer.InternalFallback(byteBuffer, _bytes, ref _chars)) 1402_charCountResult += _fallbackBuffer.InternalFallback(byteBuffer, _bytes);