Home
last modified time | relevance | path

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

/f-stack/dpdk/lib/librte_hash/
H A Drte_cuckoo_hash.c2481 const uint32_t total_entries_main = h->num_buckets * in rte_hash_iterate() local
2483 const uint32_t total_entries = total_entries_main << 1; in rte_hash_iterate()
2486 if (*next >= total_entries_main) in rte_hash_iterate()
2498 if (*next == total_entries_main) in rte_hash_iterate()
2524 bucket_idx = (*next - total_entries_main) / RTE_HASH_BUCKET_ENTRIES; in rte_hash_iterate()
2525 idx = (*next - total_entries_main) % RTE_HASH_BUCKET_ENTRIES; in rte_hash_iterate()
2531 bucket_idx = (*next - total_entries_main) / in rte_hash_iterate()
2533 idx = (*next - total_entries_main) % RTE_HASH_BUCKET_ENTRIES; in rte_hash_iterate()