Lines Matching refs:StringPrintf
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()
380 commentStr = StringPrintf("%.3lf G/sec", reportSum->commentSum / 1e9); in FormatComments()
384 commentStr = StringPrintf("%.3lf M/sec", reportSum->commentSum / 1e6); in FormatComments()
388 commentStr = StringPrintf("%.3lf K/sec", reportSum->commentSum / 1e3); in FormatComments()
391 commentStr = StringPrintf("%.3lf /sec", reportSum->commentSum); in FormatComments()
487 comments[configName] = StringPrintf("%lf cpus used", used_cpus); in GetComments()
499 comments[configName] = StringPrintf("%lf GHz", hz / 1e9); in GetComments()
514 comments[configName] = StringPrintf("%lf cycles per instruction", cpi); in GetComments()
529 comments[configName] = StringPrintf("%lf miss rate", miss_rate * ONE_HUNDRED); in GetComments()
537 comments[configName] = StringPrintf("%.3lf G/sec", rate / 1e9); in GetComments()
541 comments[configName] = StringPrintf("%.3lf M/sec", rate / 1e6); in GetComments()
545 comments[configName] = StringPrintf("%.3lf K/sec", rate / 1e3); in GetComments()
548 comments[configName] = StringPrintf("%.3lf /sec", rate); in GetComments()