Lines Matching refs:windowBits
85 /* Maximum value for windowBits in deflateInit2 and inflateInit2 */
91 1 << (windowBits+2) + 1 << (memLevel+9)
92 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
98 The memory requirements for inflate are (in bytes) 1 << windowBits
99 that is, 32K for windowBits=15 (default value) plus a few kilobytes
444 int windowBits,
456 The windowBits parameter is the base two logarithm of the window size
466 usage as a function of windowBits and memLevel.
483 data, or have at least 1<<(windowBits+1) bytes and be writable. If next_in
536 int windowBits));
541 The windowBits parameter is the base two logarithm of the maximum window
550 data, or have at least 1<<windowBits bytes. If next_out is null, the
563 windowBits < 8). msg is set to null if there is no error message.