Lines Matching refs:maxbits
143 #define maxbits zs->zs_maxbits macro
251 maxmaxcode = 1L << maxbits; in zwrite()
255 tmp = (u_char)((maxbits) | block_compress); in zwrite()
283 fcode = (long)(((long)c << maxbits) + ent); in zwrite()
427 if (n_bits == maxbits) in output()
482 maxbits = header[2]; /* Set -b from file. */ in zread()
483 block_compress = maxbits & BLOCK_MASK; in zread()
484 maxbits &= BIT_MASK; in zread()
485 maxmaxcode = 1L << maxbits; in zread()
486 if (maxbits > BITS || maxbits < 12) { in zread()
587 if (n_bits == maxbits) /* Won't get any bigger now. */ in getcode()
704 maxbits = bits ? bits : BITS; /* User settable max # bits/code. */ in zopen()
705 maxmaxcode = 1L << maxbits; /* Should NEVER generate this code. */ in zopen()