cur_match          89 tools/packfi2/deflate.c       uInt longest_match  OF((deflate_state *s, IPos cur_match));
cur_match          91 tools/packfi2/deflate.c local uInt longest_match  OF((deflate_state *s, IPos cur_match));
cur_match          94 tools/packfi2/deflate.c local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
cur_match        1027 tools/packfi2/deflate.c local uInt longest_match(s, cur_match)
cur_match        1029 tools/packfi2/deflate.c     IPos cur_match;                             /* current match */
cur_match        1075 tools/packfi2/deflate.c         Assert(cur_match < s->strstart, "no future");
cur_match        1076 tools/packfi2/deflate.c         match = s->window + cur_match;
cur_match        1153 tools/packfi2/deflate.c             s->match_start = cur_match;
cur_match        1163 tools/packfi2/deflate.c     } while ((cur_match = prev[cur_match & wmask]) > limit
cur_match        1175 tools/packfi2/deflate.c local uInt longest_match_fast(s, cur_match)
cur_match        1177 tools/packfi2/deflate.c     IPos cur_match;                             /* current match */
cur_match        1191 tools/packfi2/deflate.c     Assert(cur_match < s->strstart, "no future");
cur_match        1193 tools/packfi2/deflate.c     match = s->window + cur_match;
cur_match        1224 tools/packfi2/deflate.c     s->match_start = cur_match;