Lines Matching defs:windowBits
392 int windowBits, int memLevel, int strategy,
435 if (windowBits < 0) { /* suppress zlib wrapper */
437 if (windowBits < -15)
439 windowBits = -windowBits;
442 else if (windowBits > 15) {
444 windowBits -= 16;
448 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
449 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
452 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
461 s->w_bits = (uInt)windowBits;
849 * For the default windowBits of 15 and memLevel of 8, this function returns a
853 * For any setting other than those defaults for windowBits and memLevel, one
863 * the symbols buffer size (windowBits <= memLevel + 7). In that case some of