Lines Matching refs:MIN_MATCH
319 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
467 while (s->lookahead >= MIN_MATCH) {
469 n = s->lookahead - (MIN_MATCH-1);
475 s->lookahead = MIN_MATCH-1;
482 s->match_length = s->prev_length = MIN_MATCH-1;
1257 s->match_length = s->prev_length = MIN_MATCH-1;
1470 if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
1495 if (len < MIN_MATCH) return MIN_MATCH - 1;
1614 if (s->lookahead + s->insert >= MIN_MATCH) {
1618 #if MIN_MATCH != 3
1619 Call UPDATE_HASH() MIN_MATCH-3 more times
1622 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
1629 if (s->lookahead + s->insert < MIN_MATCH)
1925 if (s->lookahead >= MIN_MATCH) {
1940 if (s->match_length >= MIN_MATCH) {
1944 s->match_length - MIN_MATCH, bflush);
1953 s->lookahead >= MIN_MATCH) {
1970 #if MIN_MATCH != 3
1971 Call UPDATE_HASH() MIN_MATCH-3 more times
1986 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2028 if (s->lookahead >= MIN_MATCH) {
2035 s->match_length = MIN_MATCH-1;
2048 || (s->match_length == MIN_MATCH &&
2056 s->match_length = MIN_MATCH-1;
2062 if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
2063 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2075 s->prev_length - MIN_MATCH, bflush);
2090 s->match_length = MIN_MATCH-1;
2123 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2162 if (s->lookahead >= MIN_MATCH && s->strstart > 0) {
2181 if (s->match_length >= MIN_MATCH) {
2184 _tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush);