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