Lines Matching full:bits
57 state->bits < 8
67 - The maximum input bits used by a length/distance pair is 15 bits for the
68 length code, 5 bits for the length extra, 15 bits for the distance code,
69 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
95 /* 88 44 */ unsigned bits; /* ebx rbx local strm->bits */
136 ar.bits = state->bits;
147 ar.hold += (unsigned long)*ar.in++ << ar.bits;
148 ar.bits += 8;
166 /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
167 ar.len = ar.bits >> 3;
169 ar.bits -= ar.len << 3;
170 ar.hold &= (1U << ar.bits) - 1;
182 state->bits = ar.bits;