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;
859 state->last = BITS(1);
861 switch (BITS(2)) {
933 state->nlen = BITS(5) + 257;
935 state->ndist = BITS(5) + 1;
937 state->ncode = BITS(4) + 4;
957 state->lens[order[state->have++]] = (unsigned short)BITS(3);
983 here = state->lencode[BITS(state->lenbits)];
1005 copy = 3 + BITS(2);
1012 copy = 3 + BITS(3);
1019 copy = 11 + BITS(7);
1100 here = state->lencode[BITS(state->lenbits)];
1108 (BITS(last.bits + last.op) >> last.bits)];
1146 state->length += BITS(state->extra);
1156 here = state->distcode[BITS(state->distbits)];
1164 (BITS(last.bits + last.op) >> last.bits)];
1189 state->offset += BITS(state->extra);