3 writes to bufEnd
System (3)
sys\System\IO\compression\FastEncoderWindow.cs (3)
63
bufEnd
= bufPos;
75
bufEnd
+= count;
121
bufEnd
= bufPos;
11 references to bufEnd
System (11)
sys\System\IO\compression\FastEncoderWindow.cs (11)
39
Debug.Assert(
bufEnd
- bufPos >= 0, "Ending pointer can't be in front of starting pointer!");
40
return
bufEnd
- bufPos;
49
input.Count =
bufEnd
- bufPos;
68
return 2 * FastEncoderWindowSize -
bufEnd
;
74
Array.Copy(inputBuffer, startIndex, window,
bufEnd
, count);
153
if (
bufEnd
- bufPos <= matchLen) {
180
if (
bufEnd
- bufPos <= 3) {
196
if (bufPos + matchLen >
bufEnd
)
197
matchLen =
bufEnd
- bufPos;
231
if (bufPos + nextMatchLen >
bufEnd
) {
232
nextMatchLen =
bufEnd
- bufPos;