Searched refs:tuple_len (Results 1 – 3 of 3) sorted by relevance
| /dpdk/lib/hash/ |
| H A D | rte_thash.c | 76 uint32_t tuple_len; /** < Length in bits of the subtuple */ member 581 ent->tuple_len = len; in rte_thash_add_helper() 762 uint8_t *tuple, unsigned int tuple_len, in rte_thash_adjust_tuple() argument 766 uint32_t tmp_tuple[tuple_len / sizeof(uint32_t)]; in rte_thash_adjust_tuple() 775 (tuple_len % sizeof(uint32_t) != 0) || (attempts <= 0)) in rte_thash_adjust_tuple() 780 attempts = RTE_MIN(attempts, 1U << (h->tuple_len - ctx->reta_sz_log)); in rte_thash_adjust_tuple() 784 hash = rte_thash_gfni(ctx->matrices, tuple, tuple_len); in rte_thash_adjust_tuple() 786 for (j = 0; j < (tuple_len / 4); j++) in rte_thash_adjust_tuple() 791 hash = rte_softrss(tmp_tuple, tuple_len / 4, hash_key); in rte_thash_adjust_tuple() 800 offset = h->tuple_offset + h->tuple_len - ctx->reta_sz_log; in rte_thash_adjust_tuple() [all …]
|
| H A D | rte_thash.h | 493 uint8_t *tuple, unsigned int tuple_len,
|
| /dpdk/app/test/ |
| H A D | test_thash_perf.c | 88 run_thash_test(unsigned int tuple_len) in run_thash_test() argument 92 uint32_t len = RTE_ALIGN_CEIL(tuple_len, sizeof(uint32_t)); in run_thash_test()
|