Home | History | Annotate | Download | only in src

Lines Matching refs:prev_length

436     s->match_length = s->prev_length = MIN_MATCH-1;
1212 s->match_length = s->prev_length = MIN_MATCH-1;
1225 * return its length. Matches shorter or equal to prev_length are discarded,
1226 * in which case the result is equal to prev_length and match_start is
1229 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1244 int best_len = (int)s->prev_length; /* best match length so far */
1273 if (s->prev_length >= s->good_match) {
1853 /* Find the longest match, discarding those <= prev_length.
1956 /* Find the longest match, discarding those <= prev_length.
1958 s->prev_length = s->match_length, s->prev_match = s->match_start;
1961 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1986 if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
1990 check_match(s, s->strstart-1, s->prev_match, s->prev_length);
1993 s->prev_length - MIN_MATCH, bflush);
2000 s->lookahead -= s->prev_length-1;
2001 s->prev_length -= 2;
2006 } while (--s->prev_length != 0);