Searched refs:MAX_MATCH (Results 1 – 8 of 8) sorted by relevance
| /f-stack/dpdk/app/test/ |
| H A D | test_member.c | 39 #define MAX_MATCH 32 macro 419 member_set_t set_ids_ht[MAX_MATCH] = {0}; in test_member_multimatch() 420 member_set_t set_ids_vbf[MAX_MATCH] = {0}; in test_member_multimatch() 421 member_set_t set_ids_cache[MAX_MATCH] = {0}; in test_member_multimatch() 423 member_set_t set_ids_ht_m[NUM_SAMPLES][MAX_MATCH] = {{0} }; in test_member_multimatch() 455 MAX_MATCH, set_ids_vbf); in test_member_multimatch() 457 MAX_MATCH, set_ids_ht); in test_member_multimatch() 459 MAX_MATCH, set_ids_cache); in test_member_multimatch() 483 &key_array[0], num_key_ht, MAX_MATCH, match_count_vbf, in test_member_multimatch() 487 &key_array[0], num_key_vbf, MAX_MATCH, match_count_ht, in test_member_multimatch() [all …]
|
| /f-stack/freebsd/contrib/zlib/contrib/asm686/ |
| H A D | match.S | 28 #define MAX_MATCH (258) macro 30 #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1) 31 #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7) 291 cmpl $MAX_MATCH, %eax 329 movl $MAX_MATCH, bestlen(%esp)
|
| /f-stack/freebsd/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
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | trees.h | 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
|
| H A D | deflate.c | 1265 register Bytef *strend = s->window + s->strstart + MAX_MATCH; 1298 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) 1328 len = (MAX_MATCH - 1) - (int)(strend-scan); 1329 scan = strend - (MAX_MATCH-1); 1359 len = MAX_MATCH - (int)(strend - scan); 1360 scan = strend - MAX_MATCH; 1395 register Bytef *strend = s->window + s->strstart + MAX_MATCH; 1433 len = MAX_MATCH - (int)(strend - scan); 2075 if (s->lookahead <= MAX_MATCH) { 2077 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { [all …]
|
| H A D | deflate.h | 284 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1) 294 #define WIN_INIT MAX_MATCH
|
| H A D | zutil.h | 81 #define MAX_MATCH 258 macro
|
| H A D | trees.c | 104 uch _length_code[MAX_MATCH-MIN_MATCH+1]; 355 for (i = 0; i < MAX_MATCH-MIN_MATCH+1; i++) { in gen_trees_header() 357 SEPARATOR(i, MAX_MATCH-MIN_MATCH, 20)); in gen_trees_header() 1029 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
|