Lines Matching refs:cur_match
90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
1101 * IN assertions: cur_match is the head of the hash chain for the current
1109 local uInt longest_match(s, cur_match)
1111 IPos cur_match; /* current match */
1121 /* Stop when cur_match becomes <= limit. To simplify the code,
1157 Assert(cur_match < s->strstart, "no future");
1158 match = s->window + cur_match;
1235 s->match_start = cur_match;
1245 } while ((cur_match = prev[cur_match & wmask]) > limit
1258 local uInt longest_match(s, cur_match)
1260 IPos cur_match; /* current match */
1274 Assert(cur_match < s->strstart, "no future");
1276 match = s->window + cur_match;
1307 s->match_start = cur_match;