Lines Matching defs:BITS
493 #define BITS(n) \
530 the requested bits are not available. The typical use of the BITS macros
534 ... do something with BITS(n) ...
538 input left to load n bits into the accumulator, or it continues. BITS(n)
543 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
559 keep[want++] = BITS(n);
653 ((BITS(8) << 8) + (hold >> 8)) % 31) {
658 if (BITS(4) != Z_DEFLATED) {
664 len = BITS(4) + 8;
843 state->last = BITS(1);
845 switch (BITS(2)) {
909 state->nlen = BITS(5) + 257;
911 state->ndist = BITS(5) + 1;
913 state->ncode = BITS(4) + 4;
929 state->lens[order[state->have++]] = (unsigned short)BITS(3);
951 here = state->lencode[BITS(state->lenbits)];
969 copy = 3 + BITS(2);
976 copy = 3 + BITS(3);
983 copy = 11 + BITS(7);
1046 here = state->lencode[BITS(state->lenbits)];
1054 (BITS(last.bits + last.op) >> last.bits)];
1088 state->length += BITS(state->extra);
1098 here = state->distcode[BITS(state->distbits)];
1106 (BITS(last.bits + last.op) >> last.bits)];
1127 state->offset += BITS(state->extra);