Lines Matching refs:commentSum
272 … perMaps[perKey]->configName = GetDetailComments(event->second, perMaps[perKey]->commentSum, in ReportDetailInfos()
359 if (reportSum->commentSum == 0) { in FormatComments()
363 commentStr = StringPrintf("%lf cpus used", reportSum->commentSum); in FormatComments()
367 commentStr = StringPrintf("%lf GHz", reportSum->commentSum); in FormatComments()
371 commentStr = StringPrintf("%lf cycles per instruction", reportSum->commentSum); in FormatComments()
375 commentStr = StringPrintf("%lf miss rate", reportSum->commentSum); in FormatComments()
379 if (reportSum->commentSum > 1e9) { in FormatComments()
380 commentStr = StringPrintf("%.3lf G/sec", reportSum->commentSum / 1e9); in FormatComments()
383 if (reportSum->commentSum > 1e6) { in FormatComments()
384 commentStr = StringPrintf("%.3lf M/sec", reportSum->commentSum / 1e6); in FormatComments()
387 if (reportSum->commentSum > 1e3) { in FormatComments()
388 commentStr = StringPrintf("%.3lf K/sec", reportSum->commentSum / 1e3); in FormatComments()
391 commentStr = StringPrintf("%.3lf /sec", reportSum->commentSum); in FormatComments()