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

/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dmkext.c86 #define F 18 /* upper limit for match_length */
88 if match_length is greater than this */
101 * match_length of longest match.
104 int match_position, match_length; member in struct:encode_state
179 * via the global variables match_position and match_length.
180 * If match_length = F, then removes the old node in favor of the new one,
193 sp->match_length = 0;
216 if (i > sp->match_length) {
218 if ((sp->match_length = i) >= F)
310 * The global variables match_length an
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c435 uInt match_length; /* length of best match */ member in struct:deflate_state
1306 s->match_length = s->prev_length = MIN_MATCH-1;
1764 * At this point we have always match_length < MIN_MATCH
1772 s->match_length = longest_match (s, hash_head);
1776 if (s->match_length >= MIN_MATCH) {
1777 check_match(s, s->strstart, s->match_start, s->match_length);
1780 s->match_length - MIN_MATCH, bflush);
1782 s->lookahead -= s->match_length;
1788 if (s->match_length <= s->max_insert_length &&
1790 s->match_length
[all...]

Completed in 27 milliseconds