Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/util/
Dpresized_cuckoo_map.h102 uint64 b1 = fast_map_to_buckets(tk); in InsertUnique()
103 uint64 b2 = fast_map_to_buckets(h2(tk)); in InsertUnique()
132 return FindInBucket(k, fast_map_to_buckets(tk), out) || in Find()
133 FindInBucket(k, fast_map_to_buckets(h2(tk)), out); in Find()
141 port::prefetch<hint>(&buckets_[fast_map_to_buckets(tk)].keys); in PrefetchKey()
142 port::prefetch<hint>(&buckets_[fast_map_to_buckets(h2(tk))].keys); in PrefetchKey()
251 if (fast_map_to_buckets(k) != b) { in alt_bucket()
252 return fast_map_to_buckets(k); in alt_bucket()
254 return fast_map_to_buckets(h2(k)); in alt_bucket()
344 inline uint64 fast_map_to_buckets(uint64 x) const { in fast_map_to_buckets() function