Lines Matching defs:more

527 	 *   more frequently.
653 * is preferable to spend more time in matches to allow very fast string
659 * A previous version of this file used a more sophisticated algorithm
661 * time, but has a larger average cost, uses more memory and is patented.
702 /* block not completed, need more input or more output */
705 /* finish started, need only more output at next deflate */
707 finish_done /* finish done, accept no more input or output */
1167 * called again with more output space, but
1189 /* User must not provide more input after the first FINISH: */
1533 * 8, it is necessary to put more guard bytes at the
1534 * end of the window, or to check more often for
1726 unsigned more; /* Amount of free space at the end of the window. */
1730 more = (unsigned)(s->window_size -(ulg)s->lookahead -
1734 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1735 more = wsize;
1737 } else if (more == (unsigned)(-1)) {
1743 more--;
1790 more += wsize;
1799 * more == window_size - lookahead - strstart
1800 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE +
1802 * => more >= window_size - 2*WSIZE + 2
1806 * more >= MIN_LOOKAHEAD.
1807 * Otherwise, window_size == 2*WSIZE so more >= 2.
1808 * If there was sliding, more >= WSIZE. So in all cases,
1809 * more >= 2.
1811 Assert(more >= 2, "more < 2");
1812 Assert(s->strstart + s->lookahead + more <= s->window_size,
1816 more);
1824 Call UPDATE_HASH() MIN_MATCH-3 more times
2033 Call UPDATE_HASH() MIN_MATCH-3 more times
2219 * The "deflation" process uses several Huffman trees. The more
2296 * more than 16 bits on some systems.)
3252 * have processed more than WSIZE input bytes
3419 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
3887 z->msg = "need more for packet flush";
4070 * below is more than safe.
4257 * would be more efficient, but perhaps a little confusing.) If two
4801 * shorter table that decodes the shorter, more probable codes, and
4821 * being about one bit more than those, so lbits is 8+1 and dbits is
5478 case WASH: /* o: got eob, possibly more output */
5576 /* see if more to copy at beginning of window */