Home
last modified time | relevance | path

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

/rocksdb-6.9/table/cuckoo/
Dcuckoo_table_builder.cc194 for (uint32_t hash_cnt = 0; hash_cnt < num_hash_func_ && !bucket_found; in MakeHashTable() local
195 ++hash_cnt) { in MakeHashTable()
196 uint64_t hash_val = CuckooHash(user_key, hash_cnt, use_module_hash_, in MakeHashTable()
462 for (uint32_t hash_cnt = 0; hash_cnt < num_hash_func_; ++hash_cnt) { in MakeSpaceForKey() local
463 uint64_t bid = hash_vals[hash_cnt]; in MakeSpaceForKey()
476 for (uint32_t hash_cnt = 0; in MakeSpaceForKey() local
477 hash_cnt < num_hash_func_ && !null_found; ++hash_cnt) { in MakeSpaceForKey()
479 hash_cnt, use_module_hash_, hash_table_size_, identity_as_first_hash_, in MakeSpaceForKey()
Dcuckoo_table_factory.h18 const Slice& user_key, uint32_t hash_cnt, bool use_module_hash, in CuckooHash() argument
25 return get_slice_hash(user_key, hash_cnt, table_size_); in CuckooHash()
32 if (hash_cnt == 0 && identity_as_first_hash) { in CuckooHash()
36 kCuckooMurmurSeedMultiplier * hash_cnt); in CuckooHash()
Dcuckoo_table_reader.cc150 for (uint32_t hash_cnt = 0; hash_cnt < num_hash_func_; ++hash_cnt) { in Get() local
152 user_key, hash_cnt, use_module_hash_, table_size_, in Get()