Home
last modified time | relevance | path

Searched refs:matrices (Results 1 – 2 of 2) sorted by relevance

/dpdk/lib/hash/
H A Drte_thash.c89 uint64_t *matrices; member
272 ctx->matrices = rte_zmalloc(NULL, key_len * sizeof(uint64_t), in rte_thash_init_ctx()
274 if (ctx->matrices == NULL) { in rte_thash_init_ctx()
280 rte_thash_complete_matrix(ctx->matrices, ctx->hash_key, in rte_thash_init_ctx()
406 if (ctx->matrices != NULL) in generate_subkey()
407 rte_thash_complete_matrix(ctx->matrices, ctx->hash_key, in generate_subkey()
669 return ctx->matrices; in rte_thash_get_gfni_matrices()
783 if (ctx->matrices != NULL) in rte_thash_adjust_tuple()
784 hash = rte_thash_gfni(ctx->matrices, tuple, tuple_len); in rte_thash_adjust_tuple()
/dpdk/doc/guides/prog_guide/
H A Dtoeplitz_hash_lib.rst51 * A pointer to the matrices derived from the RSS hash key using ``rte_thash_complete_matrix()``.
57 * A pointer to the matrices derived from the RSS hash key using ``rte_thash_complete_matrix()``.
63 ``rte_thash_complete_matrix()`` is a function that calculates matrices required by
66 * A pointer to the memory where the matrices will be written.