Home | History | Annotate | Download | only in zlib

Lines Matching refs:windowBits

216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
221 int windowBits;
255 if (windowBits < 0) { /* suppress zlib wrapper */
257 windowBits = -windowBits;
260 else if (windowBits > 15) {
262 windowBits -= 16;
266 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
270 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
278 s->w_bits = windowBits;
473 * For the default windowBits of 15 and memLevel of 8, this function returns
479 * For any setting other than those defaults for windowBits and memLevel,
485 * for every combination of windowBits and memLevel, as well as wrap.