Home
last modified time | relevance | path

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

/rocksdb-6.9/table/block_based/
Dfull_filter_block.cc108 uint64_t block_offset, const bool no_io, in KeyMayMatch() argument
112 (void)block_offset; in KeyMayMatch()
114 assert(block_offset == kNotValid); in KeyMayMatch()
149 uint64_t block_offset, const bool no_io, in PrefixMayMatch() argument
153 (void)block_offset; in PrefixMayMatch()
155 assert(block_offset == kNotValid); in PrefixMayMatch()
189 uint64_t block_offset, const bool no_io, in KeysMayMatch() argument
193 (void)block_offset; in KeysMayMatch()
195 assert(block_offset == kNotValid); in KeysMayMatch()
210 (void)block_offset; in PrefixesMayMatch()
[all …]
Dfilter_block.h62 virtual void StartBlock(uint64_t block_offset) = 0; // Start new block filter
101 uint64_t block_offset, const bool no_io,
108 uint64_t block_offset, const bool no_io, in KeysMayMatch() argument
114 if (!KeyMayMatch(ukey, prefix_extractor, block_offset, no_io, &ikey, in KeysMayMatch()
126 uint64_t block_offset, const bool no_io,
133 uint64_t block_offset, const bool no_io, in PrefixesMayMatch() argument
141 block_offset, no_io, &ikey, get_context, in PrefixesMayMatch()
Dblock_based_filter_block.cc75 void BlockBasedFilterBlockBuilder::StartBlock(uint64_t block_offset) { in StartBlock() argument
76 uint64_t filter_index = (block_offset / kFilterBase); in StartBlock()
201 uint64_t block_offset, const bool no_io, in KeyMayMatch() argument
204 assert(block_offset != kNotValid); in KeyMayMatch()
208 return MayMatch(key, block_offset, no_io, get_context, lookup_context); in KeyMayMatch()
213 uint64_t block_offset, const bool no_io, in PrefixMayMatch() argument
216 assert(block_offset != kNotValid); in PrefixMayMatch()
217 return MayMatch(prefix, block_offset, no_io, get_context, lookup_context); in PrefixMayMatch()
247 const Slice& entry, uint64_t block_offset, bool no_io, in MayMatch() argument
268 const uint64_t index = block_offset >> base_lg; in MayMatch()
Dpartitioned_filter_block.cc160 uint64_t block_offset, const bool no_io, const Slice* const const_ikey_ptr, in KeyMayMatch() argument
163 assert(block_offset == kNotValid); in KeyMayMatch()
168 return MayMatch(key, prefix_extractor, block_offset, no_io, const_ikey_ptr, in KeyMayMatch()
175 uint64_t block_offset, const bool no_io, const Slice* const const_ikey_ptr, in PrefixMayMatch() argument
178 (void)block_offset; in PrefixMayMatch()
181 assert(block_offset == kNotValid); in PrefixMayMatch()
186 return MayMatch(prefix, prefix_extractor, block_offset, no_io, const_ikey_ptr, in PrefixMayMatch()
250 uint64_t block_offset, bool no_io, const Slice* const_ikey_ptr, in MayMatch() argument
280 slice, prefix_extractor, block_offset, no_io, const_ikey_ptr, get_context, in MayMatch()
Dblock_based_filter_block.h46 virtual void StartBlock(uint64_t block_offset) override;
95 uint64_t block_offset, const bool no_io,
100 uint64_t block_offset, const bool no_io,
114 bool MayMatch(const Slice& entry, uint64_t block_offset, bool no_io,
Dpartitioned_filter_block.h80 uint64_t block_offset, const bool no_io,
85 uint64_t block_offset, const bool no_io,
103 uint64_t block_offset, const bool no_io,
107 uint64_t block_offset, bool no_io, const Slice* const_ikey_ptr,
Dfull_filter_block.h97 uint64_t block_offset, const bool no_io,
103 uint64_t block_offset, const bool no_io,
110 uint64_t block_offset, const bool no_io,
115 uint64_t block_offset, const bool no_io,
/rocksdb-6.9/util/
Ddynamic_bloom.cc60 auto block_offset = reinterpret_cast<uintptr_t>(raw) % block_bytes; in DynamicBloom() local
61 if (block_offset > 0) { in DynamicBloom()
63 raw += block_bytes - block_offset; in DynamicBloom()
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_trace_analyzer.h37 uint64_t block_offset = 0; member
79 block_offset = BlockCacheTraceHelper::GetBlockOffsetInFile(access); in AddAccess()
/rocksdb-6.9/trace_replay/
Dblock_cache_tracer.cc418 uint64_t block_offset = ParseUint64(record_strs[20]); in ReadAccess() local
422 PutVarint64(&tmp_block_key, block_offset); in ReadAccess()