Home
last modified time | relevance | path

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

/tools/dexter/slicer/export/slicer/
Dhash_table.h68 Index HashBuckets() const { return hash_buckets_; } in HashBuckets()
74 const Index hash_buckets_; variable
109 : hash_buckets_(size), hasher_(hasher) { in Partition()
111 buckets_.reserve(hash_buckets_ * kAvgChainLength); in Partition()
112 buckets_.resize(hash_buckets_); in Partition()
133 Index bucket_index = hasher_.Hash(key) % hash_buckets_; in Insert()
149 Index bucket_index = hash_value % hash_buckets_; in Lookup()
153 assert(index < hash_buckets_); in Lookup()
208 for (Index i = 0; i < hash_buckets_; ++i) { in PrintStats()
227 printf(" hash_buckets : %u\n", hash_buckets_); in PrintStats()