Home
last modified time | relevance | path

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

/rocksdb-6.9/table/cuckoo/
Dcuckoo_table_factory.h19 uint64_t table_size_, bool identity_as_first_hash, in CuckooHash() argument
25 return get_slice_hash(user_key, hash_cnt, table_size_); in CuckooHash()
39 return value % table_size_; in CuckooHash()
41 return value & (table_size_ - 1); in CuckooHash()
Dcuckoo_table_reader.cc52 table_size_(0), in CuckooTableReader()
104 table_size_ = *reinterpret_cast<const uint64_t*>( in CuckooTableReader()
152 user_key, hash_cnt, use_module_hash_, table_size_, in Get()
191 bucket_length_ * CuckooHash(user_key, 0, use_module_hash_, table_size_, in Prepare()
274 uint64_t num_buckets = reader_->table_size_ + reader_->cuckoo_block_size_ - 1; in InitIfNeeded()
Dcuckoo_table_reader.h93 uint64_t table_size_; variable