Lines Matching refs:bits

87         unsigned sym, bits;  in fixedtables()  local
98 bits = 9; in fixedtables()
99 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables()
105 bits = 5; in fixedtables()
106 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables()
130 bits = state->bits; \
141 state->bits = bits; \
148 bits = 0; \
171 hold += (unsigned long)(*next++) << bits; \
172 bits += 8; \
180 while (bits < (unsigned)(n)) \
192 bits -= (unsigned)(n); \
198 hold >>= bits & 7; \
199 bits -= bits & 7; \
253 unsigned bits; /* bits in bit buffer */ in inflateBack() local
276 bits = 0; in inflateBack()
393 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
397 DROPBITS(here.bits); in inflateBack()
402 NEEDBITS(here.bits + 2); in inflateBack()
403 DROPBITS(here.bits); in inflateBack()
414 NEEDBITS(here.bits + 3); in inflateBack()
415 DROPBITS(here.bits); in inflateBack()
421 NEEDBITS(here.bits + 7); in inflateBack()
422 DROPBITS(here.bits); in inflateBack()
486 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
493 (BITS(last.bits + last.op) >> last.bits)]; in inflateBack()
494 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflateBack()
497 DROPBITS(last.bits); in inflateBack()
499 DROPBITS(here.bits); in inflateBack()
540 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
547 (BITS(last.bits + last.op) >> last.bits)]; in inflateBack()
548 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflateBack()
551 DROPBITS(last.bits); in inflateBack()
553 DROPBITS(here.bits); in inflateBack()