Home
last modified time | relevance | path

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

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