Home
last modified time | relevance | path

Searched refs:hits_mean (Results 1 – 1 of 1) sorted by relevance

/linux/tools/testing/selftests/bpf/
H A Dbench.c124 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()
[all …]