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

/xnu-2422.115.4/libkern/
H A Dmkext.c82 #define F 18 /* upper limit for match_length */
84 if match_length is greater than this */
97 * match_length of longest match.
100 int match_position, match_length; member in struct:encode_state
182 * via the global variables match_position and match_length.
183 * If match_length = F, then removes the old node in favor of the new one,
196 sp->match_length = 0;
219 if (i > sp->match_length) {
221 if ((sp->match_length = i) >= F)
/xnu-2422.115.4/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 155 milliseconds