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

/darwin-on-arm/xnu/libkern/
H A Dmkext.c98 #define F 18 /* upper limit for match_length */
100 if match_length is greater than this */
113 * match_length of longest match.
116 int match_position, match_length; member in struct:encode_state
198 * via the global variables match_position and match_length.
199 * If match_length = F, then removes the old node in favor of the new one,
212 sp->match_length = 0;
235 if (i > sp->match_length) {
237 if ((sp->match_length = i) >= F)
/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.c1032 s->match_length = s->prev_length = MIN_MATCH-1;
1506 * At this point we have always match_length < MIN_MATCH
1516 s->match_length = longest_match_fast (s, hash_head);
1520 s->match_length = longest_match (s, hash_head);
1522 s->match_length = longest_match_fast (s, hash_head);
1527 if (s->match_length >= MIN_MATCH) {
1528 check_match(s, s->strstart, s->match_start, s->match_length);
1531 s->match_length - MIN_MATCH, bflush);
1533 s->lookahead -= s->match_length;
1539 if (s->match_length <
[all...]
H A Ddeflate.h180 uInt match_length; /* length of best match */ member in struct:internal_state

Completed in 35 milliseconds