Lines Matching refs:MAX_MATCH
1371 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match()
1375 register Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
1383 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match()
1409 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) in longest_match()
1440 len = (MAX_MATCH - 1) - (int)(strend - scan); in longest_match()
1441 scan = strend - (MAX_MATCH-1); in longest_match()
1472 len = MAX_MATCH - (int)(strend - scan); in longest_match()
1473 scan = strend - MAX_MATCH; in longest_match()
1504 register Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
1509 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match()
1543 len = MAX_MATCH - (int)(strend - scan); in longest_match()
2059 if (s->lookahead <= MAX_MATCH) { in deflate_rle()
2061 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { in deflate_rle()
2073 strend = s->window + s->strstart + MAX_MATCH; in deflate_rle()
2080 s->match_length = MAX_MATCH - (uInt)(strend - scan); in deflate_rle()