Lines Matching full:hits
41 long total = res->false_hits + res->hits + res->drops;
46 printf("%ld false hits of %ld total operations. Percentage = %2.2f %%\n",
56 total_hits += res[i].hits;
62 printf("Summary: %ld false hits of %ld total operations. ",
73 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0);
80 printf("hits %8.3lfM/s (%7.3lfM/prod), drops %8.3lfM/s, total operations %8.3lfM/s\n",
129 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt);
136 hits_stddev += (hits_mean - res[i].hits / 1000000.0) *
137 (hits_mean - res[i].hits / 1000000.0) /
142 total_ops = res[i].hits + res[i].drops;
151 printf("Summary: hits %8.3lf \u00B1 %5.3lfM/s (%7.3lfM/prod), ",
163 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0);
168 printf("hits %8.3lfM/s (%7.3lfM/prod)\n", hits_per_sec, hits_per_prod);
177 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt);
181 hits_stddev += (hits_mean - res[i].hits / 1000000.0) *
182 (hits_mean - res[i].hits / 1000000.0) /
198 hits_per_sec = res->hits / 1000000.0 / delta_sec;
203 printf("hits %8.3lfM/s ", hits_per_sec);
214 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt);
220 hits_stddev += (hits_mean - res[i].hits / 1000000.0) *
221 (hits_mean - res[i].hits / 1000000.0) /
232 printf("Summary: hits throughput %8.3lf \u00B1 %5.3lf M ops/s, ",
234 printf("hits latency %8.3lf ns/op, ", 1000.0 / hits_mean);