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

/linux-master/lib/zlib_deflate/
H A Ddeflate.c548 s->match_length = s->prev_length = MIN_MATCH-1;
953 * At this point we have always match_length < MIN_MATCH
961 s->match_length = longest_match (s, hash_head);
965 if (s->match_length >= MIN_MATCH) {
966 check_match(s, s->strstart, s->match_start, s->match_length);
969 s->match_length - MIN_MATCH);
971 s->lookahead -= s->match_length;
976 if (s->match_length <= s->max_insert_length &&
978 s->match_length--; /* string at strstart already in hash table */
985 } while (--s->match_length !
[all...]
H A Ddefutil.h131 uInt match_length; /* length of best match */ member in struct:deflate_state

Completed in 85 milliseconds