Lines Matching defs:BITS
492 #define BITS(n) \
529 the requested bits are not available. The typical use of the BITS macros
533 ... do something with BITS(n) ...
537 input left to load n bits into the accumulator, or it continues. BITS(n)
542 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
558 keep[want++] = BITS(n);
645 ((BITS(8) << 8) + (hold >> 8)) % 31) {
650 if (BITS(4) != Z_DEFLATED) {
656 len = BITS(4) + 8;
835 state->last = BITS(1);
837 switch (BITS(2)) {
901 state->nlen = BITS(5) + 257;
903 state->ndist = BITS(5) + 1;
905 state->ncode = BITS(4) + 4;
921 state->lens[order[state->have++]] = (unsigned short)BITS(3);
943 here = state->lencode[BITS(state->lenbits)];
961 copy = 3 + BITS(2);
968 copy = 3 + BITS(3);
975 copy = 11 + BITS(7);
1039 here = state->lencode[BITS(state->lenbits)];
1047 (BITS(last.bits + last.op) >> last.bits)];
1081 state->length += BITS(state->extra);
1091 here = state->distcode[BITS(state->distbits)];
1099 (BITS(last.bits + last.op) >> last.bits)];
1120 state->offset += BITS(state->extra);