Lines Matching refs:cur_match
695 uInt longest_match(deflate_state *s, IPos cur_match);
697 local uInt longest_match(deflate_state *s, IPos cur_match);
1341 * IN assertions: cur_match is the head of the hash chain for the current
1351 IPos cur_match) /* current match */
1361 /* Stop when cur_match becomes <= limit. To simplify the code,
1397 Assert(cur_match < s->strstart, "no future");
1398 match = s->window + cur_match;
1470 s->match_start = cur_match;
1480 } while ((cur_match = prev[cur_match & wmask]) > limit
1491 local uInt longest_match(s, cur_match)
1493 IPos cur_match; /* current match */
1507 Assert(cur_match < s->strstart, "no future");
1509 match = s->window + cur_match;
1540 s->match_start = cur_match;