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;
1352
return *(
_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);
1340
internal unsafe bool MoreData =>
_bytes
< _byteEnd;
1343
internal unsafe bool EvenMoreData(int count) =>
_bytes
<= _byteEnd - count;
1349
Debug.Assert(
_bytes
< _byteEnd, "[EncodingCharBuffer.GetNextByte]Expected more date");
1350
if (
_bytes
>= _byteEnd)
1355
internal unsafe int BytesUsed => (int)(
_bytes
- _byteStart);
1390
if (!_fallbackBuffer.InternalFallback(byteBuffer,
_bytes
, ref _chars))
1402
_charCountResult += _fallbackBuffer.InternalFallback(byteBuffer,
_bytes
);