8 references to WindowSize
System (8)
sys\System\IO\compression\OutputWindow.cs (8)
18private byte[] window = new byte[WindowSize]; //The window is 2^15 bytes 25Debug.Assert(bytesUsed < WindowSize, "Can't add byte when window is full!"); 33Debug.Assert((bytesUsed + length) <= WindowSize, "Not enough space"); 40int border = WindowSize - length; 67length = Math.Min(Math.Min(length, WindowSize - bytesUsed), input.AvailableBytes); 71int tailLen = WindowSize - end; 93return WindowSize - bytesUsed; 120System.Array.Copy(window, WindowSize - tailLen,