Lines Matching defs:wsize
388 * and move to the first half later to keep a dictionary of at least wSize
390 * wSize-MAX_MATCH bytes, but this ensures that IO is always
397 /* Actual size of window: 2*wSize, except when the user input buffer
551 * distances are limited to MAX_DIST instead of WSIZE.
1589 uInt wsize = s->w_size;
1596 more = wsize;
1607 } else if (s->strstart >= wsize+MAX_DIST(s)) {
1609 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1610 s->match_start -= wsize;
1611 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1612 s->block_start -= (long) wsize;
1624 *p = (Pos)(m >= wsize ? m-wsize : NIL);
1627 n = wsize;
1632 *p = (Pos)(m >= wsize ? m-wsize : NIL);
1638 more += wsize;
1643 * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
1645 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
1646 * => more >= window_size - 2*WSIZE + 2
1650 * Otherwise, window_size == 2*WSIZE so more >= 2.
1651 * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
1816 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
3069 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
3070 * Otherwise we can't have processed more than WSIZE input bytes since
3072 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to