Home
last modified time | relevance | path

Searched refs:num_ops (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/memtable/
Dmemtablerep_bench.cc204 uint64_t* sequence, uint64_t num_ops, in BenchmarkThread() argument
211 num_ops_(num_ops), in BenchmarkThread()
234 num_ops, read_hits) {} in FillBenchmarkThread()
268 uint64_t* sequence, uint64_t num_ops, in ConcurrentFillBenchmarkThread() argument
272 num_ops, read_hits) { in ConcurrentFillBenchmarkThread()
294 num_ops, read_hits) {} in ReadBenchmarkThread()
338 uint64_t* sequence, uint64_t num_ops, in SeqReadBenchmarkThread() argument
341 num_ops, read_hits) {} in SeqReadBenchmarkThread()
363 uint64_t* sequence, uint64_t num_ops, in ConcurrentReadBenchmarkThread() argument
367 num_ops, read_hits) { in ConcurrentReadBenchmarkThread()
[all …]
/rocksdb-6.9/db/
Ddb_memtable_test.cc209 int num_ops = 1000; in TEST_F() local
238 for (int seq = 1; seq < num_ops / 2; seq++) { in TEST_F()
249 for (int seq = num_ops / 2; seq < num_ops; seq++) { in TEST_F()
269 for (int seq = 0; seq < num_ops; seq++) { in TEST_F()
/rocksdb-6.9/utilities/ttl/
Dttl_test.cc131 void MakePutWriteBatch(const BatchOperation* batch_ops, int64_t num_ops) { in MakePutWriteBatch() argument
132 ASSERT_LE(num_ops, static_cast<int64_t>(kvmap_.size())); in MakePutWriteBatch()
137 for (int64_t i = 0; i < num_ops && kv_it_ != kvmap_.end(); i++, ++kv_it_) { in MakePutWriteBatch()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1757 void ReportFinishedOps(int64_t num_ops) { in ReportFinishedOps() argument
1758 total_ops_done_.fetch_add(num_ops); in ReportFinishedOps()
1967 void FinishedOps(DBWithColumnFamilies* db_with_cfh, DB* db, int64_t num_ops, in FinishedOps() argument
1970 reporter_agent_->ReportFinishedOps(num_ops); in FinishedOps()
1990 done_ += num_ops; in FinishedOps()
4342 const int64_t num_ops = writes_ == 0 ? num_ : writes_; in DoWrite() local
4349 int64_t max_ops = num_ops * num_key_gens; in DoWrite()