Lines Matching refs:MIN_MATCH
98 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
175 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
259 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH); in zlib_deflateInit2()
548 s->match_length = s->prev_length = MIN_MATCH-1; in lm_init()
820 if (s->lookahead >= MIN_MATCH) { in fill_window()
823 #if MIN_MATCH != 3 in fill_window()
824 Call UPDATE_HASH() MIN_MATCH-3 more times in fill_window()
948 if (s->lookahead >= MIN_MATCH) { in deflate_fast()
965 if (s->match_length >= MIN_MATCH) { in deflate_fast()
969 s->match_length - MIN_MATCH); in deflate_fast()
977 s->lookahead >= MIN_MATCH) { in deflate_fast()
992 #if MIN_MATCH != 3 in deflate_fast()
993 Call UPDATE_HASH() MIN_MATCH-3 more times in deflate_fast()
1043 if (s->lookahead >= MIN_MATCH) { in deflate_slow()
1050 s->match_length = MIN_MATCH-1; in deflate_slow()
1064 (s->match_length == MIN_MATCH && in deflate_slow()
1070 s->match_length = MIN_MATCH-1; in deflate_slow()
1076 if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) { in deflate_slow()
1077 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH; in deflate_slow()
1083 s->prev_length - MIN_MATCH); in deflate_slow()
1098 s->match_length = MIN_MATCH-1; in deflate_slow()