Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:cur_match

89       uInt longest_match  OF((deflate_state *s, IPos cur_match));
91 local uInt longest_match OF((deflate_state *s, IPos cur_match));
94 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
1019 * IN assertions: cur_match is the head of the hash chain for the current
1027 local uInt longest_match(s, cur_match)
1029 IPos cur_match; /* current match */
1039 /* Stop when cur_match becomes <= limit. To simplify the code,
1075 Assert(cur_match < s->strstart, "no future");
1076 match = s->window + cur_match;
1153 s->match_start = cur_match;
1163 } while ((cur_match = prev[cur_match & wmask]) > limit
1175 local uInt longest_match_fast(s, cur_match)
1177 IPos cur_match; /* current match */
1191 Assert(cur_match < s->strstart, "no future");
1193 match = s->window + cur_match;
1224 s->match_start = cur_match;