Lines Matching defs:maxbits
134 static int maxbits = BITS; /* user settable max # bits/code */
388 * -b maxbits => maxbits. If -b is specified,
389 * then maxbits MUST be given also.
443 "Missing maxbits\n"));
447 maxbits = strtoul(optarg, &p, 10);
450 "Missing maxbits\n"));
519 if (maxbits < INIT_BITS)
520 maxbits = INIT_BITS;
521 if (maxbits > BITS)
522 maxbits = BITS;
523 maxmaxcode = 1 << maxbits;
622 if ((maxbits = getc(inp)) == EOF &&
629 block_compress = maxbits & BLOCK_MASK;
630 maxbits &= BIT_MASK;
631 maxmaxcode = 1 << maxbits;
633 if (maxbits > BITS) {
639 *fileptr, maxbits, BITS);
932 (void) fprintf(stderr, "maxbits = %d\n", maxbits);
989 putc((char)(maxbits | block_compress),
1019 maxbits_reg = maxbits;
1236 if (n_bits == maxbits)
1401 if (n_bits == maxbits)
1505 in_stack((htabof(sorttab[i]) >> maxbits) & 0xff,
1507 for (ent = htabof(sorttab[i]) & ((1 << maxbits) -1);
1509 ent = htabof(sorttab[ent]) & ((1<<maxbits)-1)) {
1511 htabof(sorttab[ent]) >> maxbits,
1840 "Usage: compress [-dDVfc/] [-b maxbits] [file ...]\n");
1845 "Usage: compress [-fv/] [-b maxbits] [file ...]\n"\
1846 " compress c [-fv] [-b maxbits] [file]\n"));