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