Home
last modified time | relevance | path

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

/xnu-8020.101.4/libkern/zlib/
H A Ddeflate.c116 uInt longest_match OF((deflate_state *s, IPos cur_match));
118 local uInt longest_match OF((deflate_state *s, IPos cur_match));
121 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
1054 longest_match(deflate_state *s, IPos cur_match) in longest_match() argument
1100 Assert(cur_match < s->strstart, "no future"); in longest_match()
1101 match = s->window + cur_match; in longest_match()
1179 s->match_start = cur_match; in longest_match()
1189 } while ((cur_match = prev[cur_match & wmask]) > limit in longest_match()
1203 longest_match_fast(deflate_state *s, IPos cur_match) in longest_match_fast() argument
1217 Assert(cur_match < s->strstart, "no future"); in longest_match_fast()
[all …]