Lines Matching refs:commentSum
267 … perMaps[perKey]->configName = GetDetailComments(event->second, perMaps[perKey]->commentSum, in ReportDetailInfos()
354 if (reportSum->commentSum == 0) { in MakeComments()
358 commentStr = StringPrintf("%lf cpus used", reportSum->commentSum); in MakeComments()
362 commentStr = StringPrintf("%lf GHz", reportSum->commentSum); in MakeComments()
366 commentStr = StringPrintf("%lf cycles per instruction", reportSum->commentSum); in MakeComments()
370 commentStr = StringPrintf("%lf miss rate", reportSum->commentSum); in MakeComments()
374 if (reportSum->commentSum > 1e9) { in MakeComments()
375 commentStr = StringPrintf("%.3lf G/sec", reportSum->commentSum / 1e9); in MakeComments()
378 if (reportSum->commentSum > 1e6) { in MakeComments()
379 commentStr = StringPrintf("%.3lf M/sec", reportSum->commentSum / 1e6); in MakeComments()
382 if (reportSum->commentSum > 1e3) { in MakeComments()
383 commentStr = StringPrintf("%.3lf K/sec", reportSum->commentSum / 1e3); in MakeComments()
386 commentStr = StringPrintf("%.3lf /sec", reportSum->commentSum); in MakeComments()