Lines Matching refs:eventCount_
81 configs_[configIndex].eventCount_ += sample.data_.period; in AddReportItem()
106 configs_[configIndex].eventCount_ += sample.data_.bnr; in AddReportItemBranch()
142 config.eventCount_ -= itemIt->eventCount_; in FilterDisplayRecords()
164 item.heat = Percentage(item.eventCount_, config.eventCount_); in UpdateReportItemsAfterAdjust()
165 totalEventCount += item.eventCount_; in UpdateReportItemsAfterAdjust()
167 item.ToDebugString().c_str(), item.heat, item.eventCount_, config.eventCount_); in UpdateReportItemsAfterAdjust()
174 totalEventCount, config.eventCount_); in UpdateReportItemsAfterAdjust()
175 HLOG_ASSERT(totalEventCount == config.eventCount_); in UpdateReportItemsAfterAdjust()
250 uint64_t maxEventCount = leftItem.eventCount_; in MergeCallFrameCount()
262 HLOG_ASSERT(leftCallFrame.eventCount_ <= maxEventCount); in MergeCallFrameCount()
268 leftFrameIt->eventCount_ += rightFrame.eventCount_; in MergeCallFrameCount()
272 HLOGM("%*s udpate frame +%" PRIu64 " %s in %s", level, "", rightFrame.eventCount_, in MergeCallFrameCount()
274 HLOG_ASSERT_MESSAGE(leftFrameIt->eventCount_ <= maxEventCount, in MergeCallFrameCount()
276 maxEventCount = leftFrameIt->eventCount_; in MergeCallFrameCount()
287 l.eventCount_ += r.eventCount_; in MultiLevelSameAndUpdateCount()
288 HLOGM("l %" PRIu64 " %s c:%zu vs r %" PRIu64 " %s c:%zu", l.eventCount_, l.func_.data(), in MultiLevelSameAndUpdateCount()
289 l.callStacks_.size(), r.eventCount_, r.func_.data(), r.callStacks_.size()); in MultiLevelSameAndUpdateCount()
339 fprintf(output_, "%" PRIu64 "\n", config.eventCount_); in OutputStdStatistics()
357 fprintf(output_, "%" PRIu64 " vs %" PRIu64 "\n", config.eventCount_, otherConfig.eventCount_); in OutputStdStatistics()
464 if (!OutputStdCallFrame(indent, callFrame.func_, callFrame.eventCount_, totalEventCount)) { in OutputStdCallFrames()
470 if (callFrame.selfEventCount_ != 0 and callFrame.selfEventCount_ != callFrame.eventCount_) { in OutputStdCallFrames()
472 callFrame.selfEventCount_, callFrame.eventCount_); in OutputStdCallFrames()
478 callFrame.childs[0].eventCount_ == callFrame.eventCount_) { in OutputStdCallFrames()
481 OutputStdCallFrames(indent, callFrame.childs[0], callFrame.eventCount_); in OutputStdCallFrames()
486 OutputStdCallFrames(indent + CALLSTACK_INDENT, childCallFrame, callFrame.eventCount_); in OutputStdCallFrames()
510 OutputStdCallFrames(CALLSTACK_INDENT, callFrame, reportItem.eventCount_); in OutputStdContent()