Searched refs:match_length (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/zlib-1.2.6/
H A Ddeflate.c383 s->match_length = s->prev_length = MIN_MATCH-1;
1122 s->match_length = s->prev_length = MIN_MATCH-1;
1656 * At this point we have always match_length < MIN_MATCH
1663 s->match_length = longest_match (s, hash_head);
1666 if (s->match_length >= MIN_MATCH) {
1667 check_match(s, s->strstart, s->match_start, s->match_length);
1670 s->match_length - MIN_MATCH, bflush);
1672 s->lookahead -= s->match_length;
1678 if (s->match_length <= s->max_insert_length &&
1680 s->match_length
[all...]
H A Ddeflate.h156 uInt match_length; /* length of best match */ member in struct:internal_state

Completed in 37 milliseconds