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