Lines Matching refs:perKey
235 void SubCommandStat::GetPerKey(std::string &perKey, const PerfEvents::Summary &summary) in GetPerKey() argument
237 perKey = ""; in GetPerKey()
239 perKey += std::to_string(summary.cpu); in GetPerKey()
240 perKey += "|"; in GetPerKey()
243 perKey += std::to_string(summary.tid); in GetPerKey()
251 std::string perKey = ""; in ReportDetailInfos() local
261 GetPerKey(perKey, it); in ReportDetailInfos()
262 if (perMaps.count(perKey) == 0) { in ReportDetailInfos()
265 perMaps[perKey] = std::move(perMap); in ReportDetailInfos()
267 … perMaps[perKey]->configName = GetDetailComments(event->second, perMaps[perKey]->commentSum, in ReportDetailInfos()
269 perMaps[perKey]->eventCountSum += it.eventCount; in ReportDetailInfos()
271 … perMaps[perKey]->scaleSum += 1 / (static_cast<double>(it.time_enabled) / it.time_running); in ReportDetailInfos()