Lines Matching refs:MAX_MATCH
113 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
1049 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1053 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1061 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1086 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1116 len = (MAX_MATCH - 1) - (int)(strend-scan);
1117 scan = strend - (MAX_MATCH-1);
1147 len = MAX_MATCH - (int)(strend - scan);
1148 scan = strend - MAX_MATCH;
1182 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1187 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1220 len = MAX_MATCH - (int)(strend - scan);
1698 if (s->lookahead < MAX_MATCH) {
1700 if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
1709 max = s->lookahead < MAX_MATCH ? s->lookahead : MAX_MATCH;