Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:window_size

989     s->window_size = (ulg)2L*s->w_size;
1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1113 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1145 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1189 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1218 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1261 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
1275 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1331 * more == window_size - lookahead - strstart
1332 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
1333 * => more >= window_size - 2*WSIZE + 2
1335 * window_size == input_size + MIN_LOOKAHEAD &&
1337 * Otherwise, window_size == 2*WSIZE so more >= 2.