Lines Matching refs:MAX_MATCH
140 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
1074 Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match()
1078 Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
1086 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match()
1111 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) in longest_match()
1141 len = (MAX_MATCH - 1) - (int)(strend-scan); in longest_match()
1142 scan = strend - (MAX_MATCH-1); in longest_match()
1173 len = MAX_MATCH - (int)(strend - scan); in longest_match()
1174 scan = strend - MAX_MATCH; in longest_match()
1208 Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match_fast()
1213 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match_fast()
1247 len = MAX_MATCH - (int)(strend - scan); in longest_match_fast()
1720 if (s->lookahead < MAX_MATCH) {
1722 if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
1731 max = s->lookahead < MAX_MATCH ? s->lookahead : MAX_MATCH;