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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c113 uInt longest_match OF((deflate_state *s, IPos cur_match));
115 local uInt longest_match OF((deflate_state *s, IPos cur_match));
118 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
1043 * IN assertions: cur_match is the head of the hash chain for the current
1051 local uInt longest_match(s, cur_match)
1053 IPos cur_match; /* current match */
1063 /* Stop when cur_match becomes <= limit. To simplify the code,
1099 Assert(cur_match < s->strstart, "no future");
1100 match = s->window + cur_match;
1177 s->match_start = cur_match;
[all...]

Completed in 32 milliseconds