Lines Matching refs:windowBits
142 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) {
150 /* extract wrap request from windowBits parameter */
151 if (windowBits < 0) {
152 if (windowBits < -15)
155 windowBits = -windowBits;
158 wrap = (windowBits >> 4) + 5;
160 if (windowBits < 48)
161 windowBits &= 15;
166 if (windowBits && (windowBits < 8 || windowBits > 15))
168 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
175 state->wbits = (unsigned)windowBits;
179 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits,
212 ret = inflateReset2(strm, windowBits);