Lines Matching refs:StringPrintf
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()
375 commentStr = StringPrintf("%.3lf G/sec", reportSum->commentSum / 1e9); in MakeComments()
379 commentStr = StringPrintf("%.3lf M/sec", reportSum->commentSum / 1e6); in MakeComments()
383 commentStr = StringPrintf("%.3lf K/sec", reportSum->commentSum / 1e3); in MakeComments()
386 commentStr = StringPrintf("%.3lf /sec", reportSum->commentSum); in MakeComments()
482 comments[configName] = StringPrintf("%lf cpus used", used_cpus); in GetComments()
494 comments[configName] = StringPrintf("%lf GHz", hz / 1e9); in GetComments()
509 comments[configName] = StringPrintf("%lf cycles per instruction", cpi); in GetComments()
524 comments[configName] = StringPrintf("%lf miss rate", miss_rate * ONE_HUNDRED); in GetComments()
532 comments[configName] = StringPrintf("%.3lf G/sec", rate / 1e9); in GetComments()
536 comments[configName] = StringPrintf("%.3lf M/sec", rate / 1e6); in GetComments()
540 comments[configName] = StringPrintf("%.3lf K/sec", rate / 1e3); in GetComments()
543 comments[configName] = StringPrintf("%.3lf /sec", rate); in GetComments()