Home
last modified time | relevance | path

Searched refs:next_key (Results 1 – 5 of 5) sorted by relevance

/rocksdb-6.9/db_stress_tool/
Ddb_stress_common.cc193 int64_t next_key = base_key + thread->rand.Next() % FLAGS_active_width; in GenerateNKeys() local
194 keys.push_back(next_key); in GenerateNKeys()
201 next_key = GetOneHotKeyID(float_rand, FLAGS_max_key); in GenerateNKeys()
204 next_key = next_key + thread->rand.Next() % in GenerateNKeys()
205 (FLAGS_active_width - (next_key - base_key)); in GenerateNKeys()
207 keys.push_back(next_key); in GenerateNKeys()
/rocksdb-6.9/table/block_based/
Dpartitioned_filter_block.cc43 const Slice* next_key) { in MaybeCutAFilterBlock() argument
59 next_key && prefix_extractor() && prefix_extractor()->InDomain(*next_key); in MaybeCutAFilterBlock()
61 FullFilterBlockBuilder::AddPrefix(*next_key); in MaybeCutAFilterBlock()
Dpartitioned_filter_block_test.cc273 std::string next_key = std::string( in CutABlock() local
276 Slice slice = Slice(next_key.data(), next_key.size()); in CutABlock()
Dpartitioned_filter_block.h55 void MaybeCutAFilterBlock(const Slice* next_key);
/rocksdb-6.9/db/compaction/
Dcompaction_job.cc984 const Slice* next_key = nullptr; in ProcessKeyValueCompaction() local
986 next_key = &c_iter->key(); in ProcessKeyValueCompaction()
991 &range_del_out_stats, next_key); in ProcessKeyValueCompaction()