Lines Matching defs:BITS
506 #define BITS(n) \
543 the requested bits are not available. The typical use of the BITS macros
547 ... do something with BITS(n) ...
551 input left to load n bits into the accumulator, or it continues. BITS(n)
556 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
572 keep[want++] = BITS(n);
661 ((BITS(8) << 8) + (hold >> 8)) % 31) {
666 if (BITS(4) != Z_DEFLATED) {
672 len = BITS(4) + 8;
835 state->last = BITS(1);
837 switch (BITS(2)) {
899 state->nlen = BITS(5) + 257;
901 state->ndist = BITS(5) + 1;
903 state->ncode = BITS(4) + 4;
918 state->lens[order[state->have++]] = (unsigned short)BITS(3);
939 here = state->lencode[BITS(state->lenbits)];
957 copy = 3 + BITS(2);
964 copy = 3 + BITS(3);
971 copy = 11 + BITS(7);
1032 here = state->lencode[BITS(state->lenbits)];
1040 (BITS(last.bits + last.op) >> last.bits)];
1073 state->length += BITS(state->extra);
1082 here = state->distcode[BITS(state->distbits)];
1090 (BITS(last.bits + last.op) >> last.bits)];
1110 state->offset += BITS(state->extra);