Lines Matching refs:windowBits
138 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) {
146 /* extract wrap request from windowBits parameter */
147 if (windowBits < 0) {
148 if (windowBits < -15)
151 windowBits = -windowBits;
154 wrap = (windowBits >> 4) + 5;
156 if (windowBits < 48)
157 windowBits &= 15;
162 if (windowBits && (windowBits < 8 || windowBits > 15))
164 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
171 state->wbits = (unsigned)windowBits;
175 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits,
208 ret = inflateReset2(strm, windowBits);