Lines Matching defs:BITS
491 #define BITS(n) \
528 the requested bits are not available. The typical use of the BITS macros
532 ... do something with BITS(n) ...
536 input left to load n bits into the accumulator, or it continues. BITS(n)
541 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
557 keep[want++] = BITS(n);
644 ((BITS(8) << 8) + (hold >> 8)) % 31) {
653 if (BITS(4) != Z_DEFLATED) {
663 len = BITS(4) + 8;
858 state->last = BITS(1);
860 switch (BITS(2)) {
932 state->nlen = BITS(5) + 257;
934 state->ndist = BITS(5) + 1;
936 state->ncode = BITS(4) + 4;
956 state->lens[order[state->have++]] = (unsigned short)BITS(3);
982 here = state->lencode[BITS(state->lenbits)];
1004 copy = 3 + BITS(2);
1011 copy = 3 + BITS(3);
1018 copy = 11 + BITS(7);
1099 here = state->lencode[BITS(state->lenbits)];
1107 (BITS(last.bits + last.op) >> last.bits)];
1145 state->length += BITS(state->extra);
1155 here = state->distcode[BITS(state->distbits)];
1163 (BITS(last.bits + last.op) >> last.bits)];
1188 state->offset += BITS(state->extra);