Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dperformance_analysis.cpp48 counts_.resize(stepNum_); in Initialization()
56 for (auto iter = counts_.begin(); iter != counts_.end(); ++iter) { in Initialization()
168 counts_[step]++; in StepTimeRecordEnd()
169 if (counts_[step] == 0) { // LCOV_EXCL_BR_LINE in StepTimeRecordEnd()
174 stepTimeRecordInfo_[step].average) / counts_[step]; in StepTimeRecordEnd()
187 result += "count: " + std::to_string(counts_[i]) + "\n"; in GetStatistics()
207 << "," << stepTimeRecordInfo_[i].average << "," << counts_[i] << "," << "\n"; in OutStatistics()
216 counts_.clear(); in Clear()
219 counts_.resize(stepNum_); in Clear()
/ohos5.0/foundation/graphic/graphic_2d/graphic_test/graphic_test_framework/src/
H A Drs_graphic_test_director.cpp81 ++counts_; in OnVSync()
89 count += counts_; in WaitForVSync()
90 cv_.wait(lock, [this, count] { return counts_ >= count; }); in WaitForVSync()
96 size_t counts_ = 0; member in OHOS::Rosen::VSyncWaiter
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dperformance_analysis.h118 std::vector<uint64_t> counts_; variable