Home
last modified time | relevance | path

Searched refs:hits (Results 1 – 25 of 87) sorted by relevance

1234

/linux-6.12.1/tools/testing/selftests/bpf/benchs/
Dbench_count.c8 struct counter hits; member
16 atomic_inc(&ctx->hits.value); in count_global_producer()
25 res->hits = atomic_swap(&ctx->hits.value, 0); in count_global_measure()
31 struct counter *hits; member
38 ctx->hits = calloc(env.producer_cnt, sizeof(*ctx->hits)); in count_local_setup()
39 if (!ctx->hits) in count_local_setup()
49 atomic_inc(&ctx->hits[idx].value); in count_local_producer()
60 res->hits += atomic_swap(&ctx->hits[i].value, 0); in count_local_measure()
Dbench_local_storage_create.c142 res->hits = atomic_swap(&skel->bss->create_cnts, 0); in measure()
208 creates_per_sec = res->hits / 1000.0 / (delta_ns / 1000000000.0); in report_progress()
209 kmallocs_per_create = (double)res->drops / res->hits; in report_progress()
225 creates_mean += res[i].hits / 1000.0 / (0.0 + res_cnt); in report_final()
226 total_creates += res[i].hits; in report_final()
232 creates_stddev += (creates_mean - res[i].hits / 1000.0) * in report_final()
233 (creates_mean - res[i].hits / 1000.0) / in report_final()
Dbench_rename.c10 struct counter hits; member
37 atomic_inc(&ctx.hits.value); in producer()
43 res->hits = atomic_swap(&ctx.hits.value, 0); in measure()
Dbench_htab_mem.c295 res->hits = atomic_swap(&ctx.skel->bss->op_cnt, 0) / env.producer_cnt; in htab_mem_measure()
303 loop = res->hits / 1000.0 / (delta_ns / 1000000000.0); in htab_mem_report_progress()
317 loop_mean += res[i].hits / 1000.0 / (0.0 + res_cnt); in htab_mem_report_final()
322 loop_stddev += (loop_mean - res[i].hits / 1000.0) * in htab_mem_report_final()
323 (loop_mean - res[i].hits / 1000.0) / in htab_mem_report_final()
Dbench_bpf_loop.c67 res->hits = atomic_swap(&ctx.skel->bss->hits, 0); in measure()
Dbench_strncmp.c133 res->hits = atomic_swap(&ctx.skel->bss->hits, 0); in strncmp_measure()
Dbench_bpf_crypto.c149 res->hits = atomic_swap(&ctx.skel->bss->hits, 0); in crypto_measure()
Dbench_trigger.c129 res->hits = sum_and_reset_counters(base_hits); in trigger_measure()
131 res->hits = sum_and_reset_counters(ctx.skel->bss->hits); in trigger_measure()
Dbench_local_storage.c224 res->hits = atomic_swap(&ctx.skel->bss->hits, 0); in measure()
/linux-6.12.1/tools/testing/selftests/bpf/
Dbench.c41 long total = res->false_hits + res->hits + res->drops; in false_hits_report_progress()
56 total_hits += res[i].hits; in false_hits_report_final()
73 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in hits_drops_report_progress()
129 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); 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()
142 total_ops = res[i].hits + res[i].drops; in hits_drops_report_final()
163 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in ops_report_progress()
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()
[all …]
/linux-6.12.1/mm/
Dswap_state.c56 #define SWAP_RA_VAL(addr, win, hits) \ argument
59 ((hits) & SWAP_RA_HITS_MASK))
371 int win, hits; in swap_cache_get_folio() local
375 hits = SWAP_RA_HITS(ra_val); in swap_cache_get_folio()
377 hits = min_t(int, hits + 1, SWAP_RA_HITS_MAX); in swap_cache_get_folio()
379 SWAP_RA_VAL(addr, win, hits)); in swap_cache_get_folio()
579 int hits, in __swapin_nr_pages() argument
590 pages = hits + 2; in __swapin_nr_pages()
620 unsigned int hits, pages, max_pages; in swapin_nr_pages() local
627 hits = atomic_xchg(&swapin_readahead_hits, 0); in swapin_nr_pages()
[all …]
/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dstrncmp_bench.c14 long hits = 0; variable
39 __sync_add_and_fetch(&hits, 1); in strncmp_no_helper()
47 __sync_add_and_fetch(&hits, 1); in strncmp_helper()
Dcrypto_bench.c18 long hits = 0; variable
78 __sync_add_and_fetch(&hits, 1); in crypto_encrypt()
102 __sync_add_and_fetch(&hits, 1); in crypto_decrypt()
Dbpf_loop_bench.c11 long hits; variable
21 __sync_add_and_fetch(&hits, nr_loops); in outer_loop()
Dlocal_storage_rcu_tasks_trace_bench.c15 long hits; variable
38 __sync_add_and_fetch(&hits, 1); in get_local()
Dtrigger_bench.c19 struct counter hits[MAX_CPUS]; variable
25 __sync_add_and_fetch(&hits[cpu & CPU_MASK].value, 1); in inc_counter()
Dlocal_storage_bench.c37 long hits; variable
99 __sync_add_and_fetch(&hits, lctx.loop_hits); in get_local()
/linux-6.12.1/drivers/cpuidle/governors/
Dteo.c117 unsigned int hits; member
190 bin->hits -= bin->hits >> DECAY_SHIFT; in teo_update()
193 cpu_data->total += bin->hits + bin->intercepts; in teo_update()
231 cpu_data->state_bins[idx_timer].hits += PULSE; in teo_update()
325 hit_sum += prev_bin->hits; in teo_select()
/linux-6.12.1/fs/
Dfs_struct.c69 int hits = 0; in chroot_fs_refs() local
72 hits += replace_path(&fs->root, old_root, new_root); in chroot_fs_refs()
73 hits += replace_path(&fs->pwd, old_root, new_root); in chroot_fs_refs()
75 while (hits--) { in chroot_fs_refs()
/linux-6.12.1/tools/power/cpupower/utils/idle_monitor/
Dcpupower-monitor.c223 int mon, hits = 0; in parse_monitor_param() local
241 tmp_mons[hits] = monitors[num]; in parse_monitor_param()
242 hits++; in parse_monitor_param()
246 if (hits == 0) { in parse_monitor_param()
254 avail_monitors = hits; in parse_monitor_param()
/linux-6.12.1/drivers/net/ethernet/marvell/mvpp2/
Dmvpp2_debugfs.c62 u32 hits = mvpp2_cls_flow_hits(entry->priv, entry->id); in mvpp2_dbgfs_flow_flt_hits_show() local
64 seq_printf(s, "%u\n", hits); in mvpp2_dbgfs_flow_flt_hits_show()
75 u32 hits = mvpp2_cls_lookup_hits(entry->priv, entry->flow); in mvpp2_dbgfs_flow_dec_hits_show() local
77 seq_printf(s, "%u\n", hits); in mvpp2_dbgfs_flow_dec_hits_show()
194 u32 hits; in mvpp2_dbgfs_flow_c2_hits_show() local
196 hits = mvpp2_cls_c2_hit_count(entry->priv, entry->id); in mvpp2_dbgfs_flow_c2_hits_show()
198 seq_printf(s, "%u\n", hits); in mvpp2_dbgfs_flow_c2_hits_show()
/linux-6.12.1/tools/perf/Documentation/
Dperf-buildid-list.txt25 --with-hits::
26 Show only DSOs with hits.
Dperf-annotate.txt146 global-period, local-period, global-hits, local-hits
150 The period/hits keywords set the base the percentage is computed
151 on - the samples period or the number of samples (hits).
Dperf-archive.txt15 This command runs perf-buildid-list --with-hits, and collects the files with the
/linux-6.12.1/lib/
Dlru_cache.c192 lc->hits = 0; in lc_reset()
230 lc->hits, lc->misses, lc->starving, lc->locked, lc->changed); in lc_seq_printf_stats()
377 ++lc->hits; in __lc_get()
381 ++lc->hits; in __lc_get()

1234