Lines Matching refs:maxbits
147 #define maxbits zs->zs_maxbits macro
255 maxmaxcode = 1L << maxbits; in zwrite()
259 tmp = (u_char)(maxbits | block_compress); in zwrite()
287 fcode = (long)(((long)c << maxbits) + ent); in zwrite()
430 if (n_bits == maxbits) in output()
485 maxbits = header[2]; /* Set -b from file. */ in zread()
486 block_compress = maxbits & BLOCK_MASK; in zread()
487 maxbits &= BIT_MASK; in zread()
488 maxmaxcode = 1L << maxbits; in zread()
489 if (maxbits > BITS || maxbits < 12) { in zread()
583 if (n_bits == maxbits) /* Won't get any bigger now. */ in getcode()
667 maxbits = bits ? bits : BITS; /* User settable max # bits/code. */ in zopen()
668 maxmaxcode = 1 << maxbits; /* Should NEVER generate this code. */ in zopen()