Home
last modified time | relevance | path

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

/rocksdb-6.9/db_stress_tool/
Ddb_stress_stat.h48 size_t bytes_; variable
70 bytes_ = 0; in Start()
93 bytes_ += other.bytes_; in Merge()
141 bytes_ += nbytes; in AddBytesForWrites()
172 if (bytes_ < 1 || done_ < 1) { in Report()
178 double bytes_mb = bytes_ / 1048576.0; in Report()
/rocksdb-6.9/java/benchmark/src/main/java/org/rocksdb/benchmark/
DDbBenchmark.java59 long bytes_; field in Stats
71 bytes_ = 0; in Stats()
88 bytes_ += other.bytes_; in merge()
117 bytes_ += bytes; in finishedSingleOp()
144 if (bytes_ > 0) { in report()
148 extra.append(String.format("%6.1f MB/s", (bytes_ / 1048576.0) / elapsed)); in report()
812 (stats.bytes_ / 1048576.0) / elapsedSeconds, extra, in stop()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1850 uint64_t bytes_; member in ROCKSDB_NAMESPACE::Stats
1874 bytes_ = 0; in Start()
1899 bytes_ += other.bytes_; in Merge()
2082 bytes_ += n; in AddBytes()
2091 if (bytes_ > 0) { in Report()
2097 (bytes_ / 1048576.0) / elapsed); in Report()
2140 uint64_t total_bytes_ = stat.bytes_; in AddStats()