Lines Matching refs:BITS
506 #define BITS(n) \ macro
660 ((BITS(8) << 8) + (hold >> 8)) % 31) { in inflate()
665 if (BITS(4) != Z_DEFLATED) { in inflate()
671 len = BITS(4) + 8; in inflate()
850 state->last = BITS(1); in inflate()
852 switch (BITS(2)) { in inflate()
916 state->nlen = BITS(5) + 257; in inflate()
918 state->ndist = BITS(5) + 1; in inflate()
920 state->ncode = BITS(4) + 4; in inflate()
936 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflate()
958 here = state->lencode[BITS(state->lenbits)]; in inflate()
976 copy = 3 + BITS(2); in inflate()
983 copy = 3 + BITS(3); in inflate()
990 copy = 11 + BITS(7); in inflate()
1053 here = state->lencode[BITS(state->lenbits)]; in inflate()
1061 (BITS(last.bits + last.op) >> last.bits)]; in inflate()
1095 state->length += BITS(state->extra); in inflate()
1105 here = state->distcode[BITS(state->distbits)]; in inflate()
1113 (BITS(last.bits + last.op) >> last.bits)]; in inflate()
1134 state->offset += BITS(state->extra); in inflate()