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;
1342
return *(
_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);
1330
internal unsafe bool MoreData =>
_bytes
< _byteEnd;
1333
internal unsafe bool EvenMoreData(int count) =>
_bytes
<= _byteEnd - count;
1339
Debug.Assert(
_bytes
< _byteEnd, "[EncodingCharBuffer.GetNextByte]Expected more date");
1340
if (
_bytes
>= _byteEnd)
1345
internal unsafe int BytesUsed => (int)(
_bytes
- _byteStart);
1380
if (!_fallbackBuffer.InternalFallback(byteBuffer,
_bytes
, ref _chars))
1392
_charCountResult += _fallbackBuffer.InternalFallback(byteBuffer,
_bytes
);