Lines Matching refs:windowBits
141 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) { in inflateReset2() argument
150 if (windowBits < 0) { in inflateReset2()
151 if (windowBits < -15) in inflateReset2()
154 windowBits = -windowBits; in inflateReset2()
157 wrap = (windowBits >> 4) + 5; in inflateReset2()
159 if (windowBits < 48) in inflateReset2()
160 windowBits &= 15; in inflateReset2()
165 if (windowBits && (windowBits < 8 || windowBits > 15)) in inflateReset2()
167 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2()
174 state->wbits = (unsigned)windowBits; in inflateReset2()
178 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits, in inflateInit2_() argument
210 ret = inflateReset2(strm, windowBits); in inflateInit2_()