Home
last modified time | relevance | path

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

/dpdk/lib/hash/
H A Drte_cuckoo_hash.c2477 const uint32_t total_entries_main = h->num_buckets * in rte_hash_iterate() local
2479 const uint32_t total_entries = total_entries_main << 1; in rte_hash_iterate()
2482 if (*next >= total_entries_main) in rte_hash_iterate()
2494 if (*next == total_entries_main) in rte_hash_iterate()
2520 bucket_idx = (*next - total_entries_main) / RTE_HASH_BUCKET_ENTRIES; in rte_hash_iterate()
2521 idx = (*next - total_entries_main) % RTE_HASH_BUCKET_ENTRIES; in rte_hash_iterate()
2527 bucket_idx = (*next - total_entries_main) / in rte_hash_iterate()
2529 idx = (*next - total_entries_main) % RTE_HASH_BUCKET_ENTRIES; in rte_hash_iterate()