Home
last modified time | relevance | path

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

/rocksdb-6.9/table/cuckoo/
Dcuckoo_table_builder.cc57 : num_hash_func_(2), in CuckooTableBuilder()
194 for (uint32_t hash_cnt = 0; hash_cnt < num_hash_func_ && !bucket_found; in MakeHashTable()
219 if (num_hash_func_ >= max_num_hash_func_) { in MakeHashTable()
224 uint64_t hash_val = CuckooHash(user_key, num_hash_func_, use_module_hash_, in MakeHashTable()
226 ++num_hash_func_; in MakeHashTable()
330 reinterpret_cast<char*>(&num_hash_func_), sizeof(num_hash_func_)); in Finish()
462 for (uint32_t hash_cnt = 0; hash_cnt < num_hash_func_; ++hash_cnt) { in MakeSpaceForKey()
477 hash_cnt < num_hash_func_ && !null_found; ++hash_cnt) { in MakeSpaceForKey()
508 while (bucket_to_replace_pos >= num_hash_func_) { in MakeSpaceForKey()
Dcuckoo_table_reader.cc44 num_hash_func_(0), in CuckooTableReader()
72 num_hash_func_ = *reinterpret_cast<const uint32_t*>(hash_funs->second.data()); in CuckooTableReader()
150 for (uint32_t hash_cnt = 0; hash_cnt < num_hash_func_; ++hash_cnt) { in Get()
Dcuckoo_table_reader.h85 uint32_t num_hash_func_; variable
Dcuckoo_table_builder.h100 uint32_t num_hash_func_; variable