• Home
  • Raw
  • Download

Lines Matching refs:hold

122     state->hold = 0;  in inflateResetKeep()
233 state->hold = 0; in inflatePrime()
239 state->hold += (unsigned)value << state->bits; in inflatePrime()
462 hold = state->hold; \
473 state->hold = hold; \
480 hold = 0; \
490 hold += (unsigned long)(*next++) << bits; \
504 ((unsigned)hold & ((1U << (n)) - 1))
509 hold >>= (n); \
516 hold >>= bits & 7; \
607 unsigned long hold; /* bit buffer */ in inflate() local
641 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */ in inflate()
645 CRC2(state->check, hold); in inflate()
656 ((BITS(8) << 8) + (hold >> 8)) % 31) { in inflate()
679 state->mode = hold & 0x200 ? DICTID : TYPE; in inflate()
685 state->flags = (int)(hold); in inflate()
697 state->head->text = (int)((hold >> 8) & 1); in inflate()
699 CRC2(state->check, hold); in inflate()
706 state->head->time = hold; in inflate()
708 CRC4(state->check, hold); in inflate()
715 state->head->xflags = (int)(hold & 0xff); in inflate()
716 state->head->os = (int)(hold >> 8); in inflate()
719 CRC2(state->check, hold); in inflate()
726 state->length = (unsigned)(hold); in inflate()
728 state->head->extra_len = (unsigned)hold; in inflate()
730 CRC2(state->check, hold); in inflate()
807 if ((state->wrap & 4) && hold != (state->check & 0xffff)) { in inflate()
824 strm->adler = state->check = ZSWAP32(hold); in inflate()
878 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { in inflate()
883 state->length = (unsigned)hold & 0xffff; in inflate()
1207 state->flags ? hold : in inflate()
1209 ZSWAP32(hold)) != state->check) { in inflate()
1223 if ((state->wrap & 4) && hold != (state->total & 0xffffffff)) { in inflate()
1425 state->hold <<= state->bits & 7; in inflateSync()
1429 buf[len++] = (unsigned char)(state->hold); in inflateSync()
1430 state->hold >>= 8; in inflateSync()