Lines Matching refs:hold

25     state->hold = 0;  in inflateReset()
184 hold = state->hold; \
195 state->hold = hold; \
202 hold = 0; \
212 hold += (unsigned long)(*next++) << bits; \
226 ((unsigned)hold & ((1U << (n)) - 1))
231 hold >>= (n); \
238 hold >>= bits & 7; \
334 unsigned long hold; /* bit buffer */ in inflate() local
368 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */ in inflate()
370 CRC2(state->check, hold); in inflate()
382 ((BITS(8) << 8) + (hold >> 8)) % 31) { in inflate()
402 state->mode = hold & 0x200 ? DICTID : TYPE; in inflate()
408 state->flags = (int)(hold); in inflate()
420 state->head->text = (int)((hold >> 8) & 1); in inflate()
421 if (state->flags & 0x0200) CRC2(state->check, hold); in inflate()
427 state->head->time = hold; in inflate()
428 if (state->flags & 0x0200) CRC4(state->check, hold); in inflate()
434 state->head->xflags = (int)(hold & 0xff); in inflate()
435 state->head->os = (int)(hold >> 8); in inflate()
437 if (state->flags & 0x0200) CRC2(state->check, hold); in inflate()
443 state->length = (unsigned)(hold); in inflate()
445 state->head->extra_len = (unsigned)hold; in inflate()
446 if (state->flags & 0x0200) CRC2(state->check, hold); in inflate()
518 if (hold != (state->check & 0xffff)) { in inflate()
535 strm->adler = state->check = REVERSE(hold); in inflate()
583 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { in inflate()
588 state->length = (unsigned)hold & 0xffff; in inflate()
863 state->flags ? hold : in inflate()
865 REVERSE(hold)) != state->check) { in inflate()
878 if (hold != (state->total & 0xffffffffUL)) { in inflate()