Lines Matching full:hits
39 long total = res->false_hits + res->hits + res->drops; in false_hits_report_progress()
44 printf("%ld false hits of %ld total operations. Percentage = %2.2f %%\n", in false_hits_report_progress()
54 total_hits += res[i].hits; in false_hits_report_final()
60 printf("Summary: %ld false hits of %ld total operations. ", in false_hits_report_final()
71 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in hits_drops_report_progress()
78 printf("hits %8.3lfM/s (%7.3lfM/prod), drops %8.3lfM/s, total operations %8.3lfM/s\n", in hits_drops_report_progress()
127 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); 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()
140 total_ops = res[i].hits + res[i].drops; in hits_drops_report_final()
149 printf("Summary: hits %8.3lf \u00B1 %5.3lfM/s (%7.3lfM/prod), ", in hits_drops_report_final()
161 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in ops_report_progress()
166 printf("hits %8.3lfM/s (%7.3lfM/prod)\n", hits_per_sec, hits_per_prod); in ops_report_progress()
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()
196 hits_per_sec = res->hits / 1000000.0 / delta_sec; in local_storage_report_progress()
201 printf("hits %8.3lfM/s ", hits_per_sec); in local_storage_report_progress()
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()
230 printf("Summary: hits throughput %8.3lf \u00B1 %5.3lf M ops/s, ", in local_storage_report_final()
232 printf("hits latency %8.3lf ns/op, ", 1000.0 / hits_mean); in local_storage_report_final()