6 references to BytesInHistory
System (6)
sys\System\IO\compression\DeflaterManaged.cs (3)
66
return input.Count == 0 && deflateEncoder.
BytesInHistory
== 0;
108
Debug.Assert(deflateEncoder.
BytesInHistory
== 0, "have leftover bytes in window");
167
Debug.Assert(deflateEncoder.
BytesInHistory
== 0, "have leftover bytes in window");
sys\System\IO\compression\FastEncoder.cs (3)
65
int inputBytesPre =
BytesInHistory
+ input.Count;
88
int inputBytesPost =
BytesInHistory
+ input.Count;
119
return input.Count > 0 ||
BytesInHistory
> 0;