Lines Matching refs:hits_mean
124 double hits_mean = 0.0, drops_mean = 0.0, total_ops_mean = 0.0; in hits_drops_report_final() local
129 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in hits_drops_report_final()
132 total_ops_mean = hits_mean + drops_mean; in hits_drops_report_final()
136 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in hits_drops_report_final()
137 (hits_mean - res[i].hits / 1000000.0) / in hits_drops_report_final()
152 hits_mean, hits_stddev, hits_mean / env.producer_cnt); in hits_drops_report_final()
173 double hits_mean = 0.0, hits_stddev = 0.0; in ops_report_final() local
177 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in ops_report_final()
181 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in ops_report_final()
182 (hits_mean - res[i].hits / 1000000.0) / in ops_report_final()
188 hits_mean, hits_stddev, hits_mean / env.producer_cnt); in ops_report_final()
189 printf("latency %8.3lf ns/op\n", 1000.0 / hits_mean * env.producer_cnt); in ops_report_final()
210 double hits_mean = 0.0, hits_stddev = 0.0; in local_storage_report_final() local
214 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in local_storage_report_final()
220 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in local_storage_report_final()
221 (hits_mean - res[i].hits / 1000000.0) / in local_storage_report_final()
233 hits_mean, hits_stddev); in local_storage_report_final()
234 printf("hits latency %8.3lf ns/op, ", 1000.0 / hits_mean); in local_storage_report_final()