Lines Matching defs:wsize
192 uInt wsize = s->w_size;
198 *p = (Pos)(m >= wsize ? m - wsize : NIL);
200 n = wsize;
205 *p = (Pos)(m >= wsize ? m - wsize : NIL);
256 uInt wsize = s->w_size;
266 more = wsize;
279 if (s->strstart >= wsize + MAX_DIST(s)) {
281 zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more);
282 s->match_start -= wsize;
283 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
284 s->block_start -= (long) wsize;
288 more += wsize;
293 * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
295 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
296 * => more >= window_size - 2*WSIZE + 2
300 * Otherwise, window_size == 2*WSIZE so more >= 2.
301 * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
1868 /* strstart never exceeds WSIZE-MAX_MATCH, so there are