Lines Matching full:hits
40 long total = res->false_hits + res->hits + res->drops; in false_hits_report_progress()
45 printf("%ld false hits of %ld total operations. Percentage = %2.2f %%\n", in false_hits_report_progress()
55 total_hits += res[i].hits; in false_hits_report_final()
61 printf("Summary: %ld false hits of %ld total operations. ", in false_hits_report_final()
72 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in hits_drops_report_progress()
79 printf("hits %8.3lfM/s (%7.3lfM/prod), drops %8.3lfM/s, total operations %8.3lfM/s\n", in hits_drops_report_progress()
128 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in hits_drops_report_final()
135 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in hits_drops_report_final()
136 (hits_mean - res[i].hits / 1000000.0) / in hits_drops_report_final()
141 total_ops = res[i].hits + res[i].drops; in hits_drops_report_final()
150 printf("Summary: hits %8.3lf \u00B1 %5.3lfM/s (%7.3lfM/prod), ", in hits_drops_report_final()
162 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in ops_report_progress()
167 printf("hits %8.3lfM/s (%7.3lfM/prod)\n", hits_per_sec, hits_per_prod); in ops_report_progress()
176 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in ops_report_final()
180 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in ops_report_final()
181 (hits_mean - res[i].hits / 1000000.0) / in ops_report_final()
197 hits_per_sec = res->hits / 1000000.0 / delta_sec; in local_storage_report_progress()
202 printf("hits %8.3lfM/s ", hits_per_sec); in local_storage_report_progress()
213 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in local_storage_report_final()
219 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in local_storage_report_final()
220 (hits_mean - res[i].hits / 1000000.0) / in local_storage_report_final()
231 printf("Summary: hits throughput %8.3lf \u00B1 %5.3lf M ops/s, ", in local_storage_report_final()
233 printf("hits latency %8.3lf ns/op, ", 1000.0 / hits_mean); in local_storage_report_final()