Lines Matching refs:hits_mean
122 double hits_mean = 0.0, drops_mean = 0.0, total_ops_mean = 0.0; in hits_drops_report_final() local
127 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in hits_drops_report_final()
130 total_ops_mean = hits_mean + drops_mean; in hits_drops_report_final()
134 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in hits_drops_report_final()
135 (hits_mean - res[i].hits / 1000000.0) / in hits_drops_report_final()
150 hits_mean, hits_stddev, hits_mean / env.producer_cnt); in hits_drops_report_final()
171 double hits_mean = 0.0, hits_stddev = 0.0; in ops_report_final() local
175 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in ops_report_final()
179 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in ops_report_final()
180 (hits_mean - res[i].hits / 1000000.0) / in ops_report_final()
186 hits_mean, hits_stddev, hits_mean / env.producer_cnt); in ops_report_final()
187 printf("latency %8.3lf ns/op\n", 1000.0 / hits_mean * env.producer_cnt); in ops_report_final()
208 double hits_mean = 0.0, hits_stddev = 0.0; in local_storage_report_final() local
212 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in local_storage_report_final()
218 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in local_storage_report_final()
219 (hits_mean - res[i].hits / 1000000.0) / in local_storage_report_final()
231 hits_mean, hits_stddev); in local_storage_report_final()
232 printf("hits latency %8.3lf ns/op, ", 1000.0 / hits_mean); in local_storage_report_final()