Lines Matching refs:BITS
485 #define BITS(n) \
527 the requested bits are not available. The typical use of the BITS macros
531 ... do something with BITS(n) ...
535 input left to load n bits into the accumulator, or it continues. BITS(n)
540 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
556 keep[want++] = BITS(n);
645 ((BITS(8) << 8) + (hold >> 8)) % 31) {
650 if (BITS(4) != Z_DEFLATED) {
656 len = BITS(4) + 8;
819 state->last = BITS(1);
821 switch (BITS(2)) {
883 state->nlen = BITS(5) + 257;
885 state->ndist = BITS(5) + 1;
887 state->ncode = BITS(4) + 4;
902 state->lens[order[state->have++]] = (unsigned short)BITS(3);
923 here = state->lencode[BITS(state->lenbits)];
942 copy = 3 + BITS(2);
949 copy = 3 + BITS(3);
956 copy = 11 + BITS(7);
1017 here = state->lencode[BITS(state->lenbits)];
1025 (BITS(last.bits + last.op) >> last.bits)];
1058 state->length += BITS(state->extra);
1067 here = state->distcode[BITS(state->distbits)];
1075 (BITS(last.bits + last.op) >> last.bits)];
1095 state->offset += BITS(state->extra);