Lines Matching refs:rate
451 double rate = 0; in HandleOtherConfig() local
453 rate = summary.eventCount / (running_time_in_sec / scale); in HandleOtherConfig()
455 comment += rate; in HandleOtherConfig()
535 double rate = it->second->eventCount / (running_time_in_sec / scale); in GetComments() local
536 if (rate > 1e9) { in GetComments()
537 comments[configName] = StringPrintf("%.3lf G/sec", rate / 1e9); in GetComments()
540 if (rate > 1e6) { in GetComments()
541 comments[configName] = StringPrintf("%.3lf M/sec", rate / 1e6); in GetComments()
544 if (rate > 1e3) { in GetComments()
545 comments[configName] = StringPrintf("%.3lf K/sec", rate / 1e3); in GetComments()
548 comments[configName] = StringPrintf("%.3lf /sec", rate); in GetComments()