Lines Matching refs:rate
446 double rate = 0; in HandleOtherConfig() local
448 rate = summary.eventCount / (running_time_in_sec / scale); in HandleOtherConfig()
450 comment += rate; in HandleOtherConfig()
530 double rate = it->second->eventCount / (running_time_in_sec / scale); in GetComments() local
531 if (rate > 1e9) { in GetComments()
532 comments[configName] = StringPrintf("%.3lf G/sec", rate / 1e9); in GetComments()
535 if (rate > 1e6) { in GetComments()
536 comments[configName] = StringPrintf("%.3lf M/sec", rate / 1e6); in GetComments()
539 if (rate > 1e3) { in GetComments()
540 comments[configName] = StringPrintf("%.3lf K/sec", rate / 1e3); in GetComments()
543 comments[configName] = StringPrintf("%.3lf /sec", rate); in GetComments()