Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/bpf/progs/
H A Dlocal_storage_bench.c36 long important_hits; variable
100 __sync_add_and_fetch(&important_hits, lctx.loop_important_hits); in get_local()
/linux/tools/testing/selftests/bpf/benchs/
H A Dbench_sockmap.c365 res->important_hits = atomic_swap(&ctx.send_calls, 0); in measure()
366 res->important_hits |= atomic_swap(&ctx.read_calls, 0) << 32; in measure()
509 send_hz = (res->important_hits & 0xFFFFFFFF) / (delta_ns / 1000000000.0); in report_progress()
510 read_hz = (res->important_hits >> 32) / (delta_ns / 1000000000.0); in report_progress()
H A Dbench_local_storage.c225 res->important_hits = atomic_swap(&ctx.skel->bss->important_hits, 0); in measure()
/linux/tools/testing/selftests/bpf/
H A Dbench.c199 important_hits_per_sec = res->important_hits / 1000000.0 / delta_sec; in local_storage_report_progress()
204 printf("important_hits %8.3lfM/s\n", important_hits_per_sec); in local_storage_report_progress()
215 important_hits_mean += res[i].important_hits / 1000000.0 / (0.0 + res_cnt); in local_storage_report_final()
224 (important_hits_mean - res[i].important_hits / 1000000.0) * in local_storage_report_final()
225 (important_hits_mean - res[i].important_hits / 1000000.0) / in local_storage_report_final()
235 printf("important_hits throughput %8.3lf \u00B1 %5.3lf M ops/s\n", in local_storage_report_final()
H A Dbench.h46 long important_hits;
45 long important_hits; global() member