Home
last modified time | relevance | path

Searched refs:total_bytes (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/db/compaction/
Dcompaction_job.cc146 uint64_t total_bytes; member
166 total_bytes(0), in SubcompactionState()
186 total_bytes = std::move(o.total_bytes); in operator =()
244 uint64_t total_bytes; member
249 total_bytes(0), in CompactionState()
286 compact_->total_bytes += sc.total_bytes; in AggregateStatistics()
780 << compact_->total_bytes << "num_input_records" in Install()
1315 sub_compact->total_bytes += current_bytes; in FinishCompactionOutputFile()
1434 compaction->InputLevelSummary(&inputs_summary), compact_->total_bytes); in InstallCompactionResults()
/rocksdb-6.9/util/
Dcoding.h311 inline void PutLengthPrefixedSliceParts(std::string* dst, size_t total_bytes, in PutLengthPrefixedSliceParts() argument
314 total_bytes += slice_parts.parts[i].size(); in PutLengthPrefixedSliceParts()
316 PutVarint32(dst, static_cast<uint32_t>(total_bytes)); in PutLengthPrefixedSliceParts()
/rocksdb-6.9/db/
Ddb_iterator_test.cc2028 std::atomic<uint64_t> total_bytes(0); in TEST_P() local
2056 total_bytes += bytes; in TEST_P()
2083 total_bytes += bytes; in TEST_P()
2103 ASSERT_EQ(TestGetTickerCount(options, ITER_BYTES_READ), (uint64_t)total_bytes); in TEST_P()