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

/barrelfish-master/lib/zlib/
H A Ddeflate.c1003 s->match_length = s->prev_length = MIN_MATCH-1;
1477 * At this point we have always match_length < MIN_MATCH
1487 s->match_length = longest_match_fast (s, hash_head);
1491 s->match_length = longest_match (s, hash_head);
1493 s->match_length = longest_match_fast (s, hash_head);
1498 if (s->match_length >= MIN_MATCH) {
1499 check_match(s, s->strstart, s->match_start, s->match_length);
1502 s->match_length - MIN_MATCH, bflush);
1504 s->lookahead -= s->match_length;
1510 if (s->match_length <
[all...]
H A Ddeflate.h153 uInt match_length; /* length of best match */ member in struct:internal_state

Completed in 15 milliseconds