Home
last modified time | relevance | path

Searched refs:MAX_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)
588 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match()
592 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
600 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match()
620 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) in longest_match()
650 len = (MAX_MATCH - 1) - (int)(strend-scan); in longest_match()
651 scan = strend - (MAX_MATCH-1); in longest_match()
681 len = MAX_MATCH - (int)(strend - scan); in longest_match()
682 scan = strend - MAX_MATCH; in longest_match()
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.h32 #define MAX_MATCH 258 macro