Lines Matching defs:more

353      *     trees more frequently.
437 * is preferable to spend more time in matches to allow very fast string
443 * A previous version of this file used a more sophisticated algorithm
445 * time, but has a larger average cost, uses more memory and is patented.
775 /* User must not provide more input after the first FINISH: */
805 /* If a flush was requested, we have a little more to output now. */
1000 * necessary to put more guard bytes at the end of the window, or
1001 * to check more often for insufficient lookahead.
1114 unsigned more; /* Amount of free space at the end of the window. */
1118 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1121 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1122 more = wsize;
1123 } else if (more == (unsigned)(-1)) {
1127 more--;
1135 * more == 0 with more == 64K on a 16 bit machine.
1164 more += wsize;
1170 * more == window_size - lookahead - strstart
1171 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
1172 * => more >= window_size - 2*WSIZE + 2
1175 * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
1176 * Otherwise, window_size == 2*WSIZE so more >= 2.
1177 * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
1179 Assert(more >= 2, "more < 2");
1182 more);
1190 Call UPDATE_HASH() MIN_MATCH-3 more times
1221 * processing was terminated prematurely (no more input or output space).
1298 Call UPDATE_HASH() MIN_MATCH-3 more times
1448 * The "deflation" process uses several Huffman trees. The more
1513 * more than 16 bits on some systems.)
2362 * Otherwise we can't have processed more than WSIZE input bytes since
2500 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
2666 } more;
3171 would be more efficient, but perhaps a little confusing.) If two
3413 c = h->more.Base;
3607 #define base more.Base
3608 #define next more.Next
3658 shorter, more probable codes, and then point to subsidiary tables for
3677 about one bit more than those, so lbits is 8+1 and dbits is 5+1.
4077 #define base more.Base
4078 #define next more.Next
4285 case WASH: /* o: got eob, possibly more output */
4350 /* see if more to copy at beginning of window */
4395 #define base more.Base
4396 #define next more.Next