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

/linux-master/lib/zlib_deflate/
H A Ddeflate.c98 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
100 * See deflate.c for comments about the MIN_MATCH+1.
149 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
171 * input characters and the first MIN_MATCH bytes of str are valid
172 * (except for the last MIN_MATCH-1 bytes of the input file).
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);
548 s->match_length = s->prev_length = MIN_MATCH-1;
820 if (s->lookahead >= MIN_MATCH) {
[all...]
H A Ddefutil.h121 * step. It must be such that after MIN_MATCH steps, the oldest
123 * hash_shift * MIN_MATCH >= hash_bits
263 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
265 * See deflate.c for comments about the MIN_MATCH+1.
H A Ddeftree.c101 static uch length_code[MAX_MATCH-MIN_MATCH+1];
102 /* length code for each normalized match length (0 == MIN_MATCH) */
105 /* First normalized length for each code (0 = MIN_MATCH) */
918 unsigned lc /* match length-MIN_MATCH or unmatched char (if dist==0) */
928 /* Here, lc is the match length - MIN_MATCH */
931 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
983 /* Here, lc is the match length - MIN_MATCH */
/linux-master/include/linux/
H A Dzutil.h31 #define MIN_MATCH 3 macro

Completed in 143 milliseconds