Lines Matching defs:BITS
503 #define BITS(n) \
540 the requested bits are not available. The typical use of the BITS macros
544 ... do something with BITS(n) ...
548 input left to load n bits into the accumulator, or it continues. BITS(n)
553 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
569 keep[want++] = BITS(n);
656 ((BITS(8) << 8) + (hold >> 8)) % 31) {
661 if (BITS(4) != Z_DEFLATED) {
667 len = BITS(4) + 8;
846 state->last = BITS(1);
848 switch (BITS(2)) {
912 state->nlen = BITS(5) + 257;
914 state->ndist = BITS(5) + 1;
916 state->ncode = BITS(4) + 4;
932 state->lens[order[state->have++]] = (unsigned short)BITS(3);
954 here = state->lencode[BITS(state->lenbits)];
972 copy = 3 + BITS(2);
979 copy = 3 + BITS(3);
986 copy = 11 + BITS(7);
1050 here = state->lencode[BITS(state->lenbits)];
1058 (BITS(last.bits + last.op) >> last.bits)];
1092 state->length += BITS(state->extra);
1102 here = state->distcode[BITS(state->distbits)];
1110 (BITS(last.bits + last.op) >> last.bits)];
1131 state->offset += BITS(state->extra);