Lines Matching refs:MIN_MATCH

178    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
183 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
317 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
457 while (s->lookahead >= MIN_MATCH) {
459 n = s->lookahead - (MIN_MATCH-1);
461 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
469 s->lookahead = MIN_MATCH-1;
476 s->match_length = s->prev_length = MIN_MATCH-1;
1252 s->match_length = s->prev_length = MIN_MATCH-1;
1447 if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
1472 if (len < MIN_MATCH) return MIN_MATCH - 1;
1580 if (s->lookahead + s->insert >= MIN_MATCH) {
1584 #if MIN_MATCH != 3
1585 Call UPDATE_HASH() MIN_MATCH-3 more times
1588 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
1595 if (s->lookahead + s->insert < MIN_MATCH)
1897 if (s->lookahead >= MIN_MATCH) {
1912 if (s->match_length >= MIN_MATCH) {
1916 s->match_length - MIN_MATCH, bflush);
1925 s->lookahead >= MIN_MATCH) {
1942 #if MIN_MATCH != 3
1943 Call UPDATE_HASH() MIN_MATCH-3 more times
1958 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2000 if (s->lookahead >= MIN_MATCH) {
2007 s->match_length = MIN_MATCH-1;
2020 || (s->match_length == MIN_MATCH &&
2028 s->match_length = MIN_MATCH-1;
2034 if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
2035 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2041 s->prev_length - MIN_MATCH, bflush);
2056 s->match_length = MIN_MATCH-1;
2089 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2128 if (s->lookahead >= MIN_MATCH && s->strstart > 0) {
2147 if (s->match_length >= MIN_MATCH) {
2150 _tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush);