Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/lib/zlib/
H A Ddeflate.c90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
1061 local uInt longest_match(s, cur_match) in longest_match() argument
1063 IPos cur_match; /* current match */
1109 Assert(cur_match < s->strstart, "no future");
1110 match = s->window + cur_match;
1187 s->match_start = cur_match;
1197 } while ((cur_match = prev[cur_match & wmask]) > limit
1210 local uInt longest_match(s, cur_match) in longest_match() argument
1212 IPos cur_match; /* current match */
[all …]