Home
last modified time | relevance | path

Searched refs:GetValue (Results 1 – 15 of 15) sorted by relevance

/rocksdb-6.9/table/block_based/
Dblock_based_table_reader_impl.h50 const UncompressionDict& dict = uncompression_dict.GetValue() in NewDataBlockIterator()
51 ? *uncompression_dict.GetValue() in NewDataBlockIterator()
65 assert(block.GetValue() != nullptr); in NewDataBlockIterator()
76 (!block.GetValue()->own_bytes() && rep_->immortal_table); in NewDataBlockIterator()
77 iter = InitBlockIterator<TBlockIter>(rep_, block.GetValue(), block_type, iter, in NewDataBlockIterator()
103 block.GetValue()->ApproximateMemoryUsage(), in NewDataBlockIterator()
138 assert(block.GetValue() != nullptr); in NewDataBlockIterator()
148 (!block.GetValue()->own_bytes() && rep_->immortal_table); in NewDataBlockIterator()
149 iter = InitBlockIterator<TBlockIter>(rep_, block.GetValue(), BlockType::kData, in NewDataBlockIterator()
175 block.GetValue()->ApproximateMemoryUsage(), in NewDataBlockIterator()
Dpartitioned_index_reader.cc72 index_block.GetValue()->NewIndexIterator( in NewIterator()
83 index_block.GetValue()->NewIndexIterator( in NewIterator()
126 index_block.GetValue()->NewIndexIterator( in CacheDependencies()
167 assert(s.ok() || block.GetValue() == nullptr); in CacheDependencies()
168 if (s.ok() && block.GetValue() != nullptr) { in CacheDependencies()
Dpartitioned_filter_block.cc196 filter_block.GetValue()->NewIndexIterator( in GetFilterPartitionHandle()
229 filter_block->SetUnownedValue(iter->second.GetValue()); in GetFilterPartitionBlock()
260 if (UNLIKELY(filter_block.GetValue()->size() == 0)) { in MayMatch()
317 assert(filter_block.GetValue()); in CacheDependencies()
322 filter_block.GetValue()->NewIndexIterator( in CacheDependencies()
357 assert(s.ok() || block.GetValue() == nullptr); in CacheDependencies()
358 if (s.ok() && block.GetValue() != nullptr) { in CacheDependencies()
Dfilter_block_reader_common.cc73 filter_block->SetUnownedValue(filter_block_.GetValue()); in GetOrReadFilterBlock()
90 assert(!filter_block_.GetOwnValue() || filter_block_.GetValue() != nullptr); in ApproximateFilterBlockMemoryUsage()
92 ? filter_block_.GetValue()->ApproximateMemoryUsage() in ApproximateFilterBlockMemoryUsage()
Duncompression_dict_reader.cc83 uncompression_dict->SetUnownedValue(uncompression_dict_.GetValue()); in GetOrReadUncompressionDictionary()
99 uncompression_dict_.GetValue() != nullptr); in ApproximateMemoryUsage()
101 ? uncompression_dict_.GetValue()->ApproximateMemoryUsage() in ApproximateMemoryUsage()
Dfull_filter_block.cc170 assert(filter_block.GetValue()); in MayMatch()
173 filter_block.GetValue()->filter_bits_reader(); in MayMatch()
227 assert(filter_block.GetValue()); in MayMatch()
230 filter_block.GetValue()->filter_bits_reader(); in MayMatch()
Dblock_based_filter_block.cc257 assert(filter_block.GetValue()); in MayMatch()
263 if (!ParseFieldsFromBlock(*filter_block.GetValue(), &data, &offset, &num, in MayMatch()
315 assert(filter_block.GetValue()); in ToString()
321 if (!ParseFieldsFromBlock(*filter_block.GetValue(), &data, &offset, &num, in ToString()
Dindex_reader_common.h74 assert(!index_block_.GetOwnValue() || index_block_.GetValue() != nullptr); in ApproximateIndexBlockMemoryUsage()
76 ? index_block_.GetValue()->ApproximateMemoryUsage() in ApproximateIndexBlockMemoryUsage()
Dblock_based_table_reader.cc1410 if (block_entry->GetValue()) { in MaybeReadBlockAndLoadToCache()
1419 if (block_entry->GetValue() == nullptr && !no_io && ro.fill_cache) { in MaybeReadBlockAndLoadToCache()
1460 if (block_entry->GetValue()) { in MaybeReadBlockAndLoadToCache()
1465 usage = block_entry->GetValue()->ApproximateMemoryUsage(); in MaybeReadBlockAndLoadToCache()
1517 assert(s.ok() || block_entry->GetValue() == nullptr); in MaybeReadBlockAndLoadToCache()
1739 if (block_entry->GetValue() != nullptr) { in RetrieveMultipleBlocks()
1791 if (block_entry->GetValue() != nullptr) { in RetrieveBlock()
1885 return block->second.GetValue()->NewIndexIterator( in NewSecondaryIterator()
2355 const UncompressionDict& dict = uncompression_dict.GetValue() in MultiGet()
3129 assert(uncompression_dict.GetValue()); in DumpTable()
[all …]
Dindex_reader_common.cc41 index_block->SetUnownedValue(index_block_.GetValue()); in GetOrReadIndexBlock()
Dbinary_search_index_reader.cc63 auto it = index_block.GetValue()->NewIndexIterator( in NewIterator()
Dhash_index_reader.cc134 auto it = index_block.GetValue()->NewIndexIterator( in NewIterator()
Dcachable_entry.h113 T* GetValue() const { return value_; } in GetValue() function
/rocksdb-6.9/table/cuckoo/
Dcuckoo_table_builder.h98 inline Slice GetValue(uint64_t idx) const;
Dcuckoo_table_builder.cc177 Slice CuckooTableBuilder::GetValue(uint64_t idx) const { in GetValue() function in ROCKSDB_NAMESPACE::CuckooTableBuilder
310 io_status_ = file_->Append(GetValue(bucket.vector_idx)); in Finish()