Home
last modified time | relevance | path

Searched refs:cur_match (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Ddeflate.c93 uInt longest_match OF((deflate_state *s, IPos cur_match));
95 local uInt longest_match OF((deflate_state *s, IPos cur_match));
1239 local uInt longest_match(s, cur_match) in longest_match() argument
1287 Assert(cur_match < s->strstart, "no future");
1288 match = s->window + cur_match;
1365 s->match_start = cur_match;
1375 } while ((cur_match = prev[cur_match & wmask]) > limit
1388 local uInt longest_match(s, cur_match) in longest_match() argument
1404 Assert(cur_match < s->strstart, "no future");
1406 match = s->window + cur_match;
[all …]