| 528 | } |
| 529 | |
| 530 | hash_sig_t |
| 531 | rte_hash_hash(const struct rte_hash *h, const void *key) |
| 532 | { |
| 533 | /* calc hash result by key */ |
| 534 | return h->hash_func(key, h->key_len, h->hash_func_init_val); |
| 535 | } |
| 536 | |
| 537 | int32_t |
| 538 | rte_hash_max_key_id(const struct rte_hash *h) |
no outgoing calls