Home
last modified time | relevance | path

Searched refs:MIN_MATCH (Results 1 – 4 of 4) sorted by relevance

/linux/lib/zlib_deflate/
H A Ddeflate.c98 #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()
[all …]
H A Ddefutil.h263 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
H A Ddeftree.c101 static uch length_code[MAX_MATCH-MIN_MATCH+1];
931 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
/linux/include/linux/
H A Dzutil.h31 #define MIN_MATCH 3 macro