Searched refs:AddHash (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/util/ |
| D | dynamic_bloom.h | 60 void AddHash(uint32_t hash); 88 void AddHash(uint32_t hash, const OrFunc& or_func); 93 inline void DynamicBloom::Add(const Slice& key) { AddHash(BloomHash(key)); } in Add() 99 inline void DynamicBloom::AddHash(uint32_t hash) { in AddHash() function 100 AddHash(hash, [](std::atomic<uint64_t>* ptr, uint64_t mask) { in AddHash() 107 AddHash(hash, [](std::atomic<uint64_t>* ptr, uint64_t mask) { in AddHashConcurrently() 197 inline void DynamicBloom::AddHash(uint32_t h32, const OrFunc& or_func) { in AddHash() function
|
| D | bloom_impl.h | 194 static inline void AddHash(uint32_t h1, uint32_t h2, uint32_t len_bytes, in AddHash() function 358 static inline void AddHash(uint32_t h, uint32_t total_bits, int num_probes, in AddHash() function 426 static inline void AddHash(uint32_t h, uint32_t num_lines, int num_probes, in AddHash() function
|
| D | filter_bench.cc | 376 info.plain_table_bloom_->AddHash(hash); in Go()
|
| /rocksdb-6.9/table/plain/ |
| D | plain_table_bloom.h | 47 void AddHash(uint32_t hash); 102 inline void PlainTableBloomV1::AddHash(uint32_t h) { in AddHash() function 105 LegacyLocalityBloomImpl<true>::AddHash(h, kNumBlocks, kNumProbes, data_, in AddHash() 108 LegacyNoLocalityBloomImpl::AddHash(h, kTotalBits, kNumProbes, data_); in AddHash()
|
| D | plain_table_bloom.cc | 71 bloom_.AddHash(hash); in AddKeysHashes()
|
| D | plain_table_reader.cc | 242 bloom_.AddHash(GetSliceHash(key.user_key)); in PopulateIndexRecordList() 284 bloom_.AddHash(prefix_hash); in FillBloom()
|
| /rocksdb-6.9/table/block_based/ |
| D | filter_policy.cc | 245 void AddHash(uint32_t h, char* data, uint32_t num_lines, uint32_t total_bits); 274 AddHash(h, data, num_lines, total_bits); in Finish() 370 inline void LegacyBloomBitsBuilder::AddHash(uint32_t h, char* data, in AddHash() function in ROCKSDB_NAMESPACE::__anona271d7140111::LegacyBloomBitsBuilder 378 LegacyBloomImpl::AddHash(h, num_lines, num_probes_, data, in AddHash() 509 LegacyNoLocalityBloomImpl::AddHash(BloomHash(keys[i]), bits, num_probes, in CreateFilter()
|