Searched refs:MAX_MATCH (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/contrib/zlib/contrib/gcc_gvmat64/ |
H A D | gvmat64.S | 93 #define MAX_MATCH 258 macro 95 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1) 493 cmp eax, MAX_MATCH 538 mov r11d,MAX_MATCH
|
/freebsd/sys/contrib/zlib/ |
H A D | deflate.c | 1367 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() 1371 register Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match() 1379 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match() 1405 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) in longest_match() 1436 len = (MAX_MATCH - 1) - (int)(strend - scan); in longest_match() 1437 scan = strend - (MAX_MATCH-1); in longest_match() 1468 len = MAX_MATCH - (int)(strend - scan); in longest_match() 1469 scan = strend - MAX_MATCH; in longest_match() 1500 register Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match() 1505 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); in longest_match() [all …]
|
H A D | trees.h | 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
|
H A D | deflate.h | 290 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1) 300 #define WIN_INIT MAX_MATCH
|
H A D | trees.c | 104 uch _length_code[MAX_MATCH-MIN_MATCH+1]; 415 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) { in gen_trees_header() 417 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20)); in gen_trees_header() 1110 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
|
H A D | zutil.h | 85 #define MAX_MATCH 258 macro
|
/freebsd/contrib/sendmail/src/ |
H A D | map.c | 7521 # define MAX_MATCH 32 macro 7693 int *fields = (int *) xalloc(sizeof(int) * (MAX_MATCH + 1)); 7701 if (substrings >= MAX_MATCH) 7703 syserr("too many substrings, %d max", MAX_MATCH); 7713 MAX_MATCH + 1, substrings) == -1) 7767 regmatch_t pmatch[MAX_MATCH]; 7781 name, MAX_MATCH, pmatch, 0); 7798 int fields[MAX_MATCH + 1]; 7811 if (parse_fields(av[1], fields, MAX_MATCH + 1, 7835 if (*ip >= MAX_MATCH ||
|