/linux/kernel/ |
A D | profile.c | 36 u32 pc, hits; member 259 if (!hits[i].hits) { in profile_flip_buffers() 260 if (hits[i].pc) in profile_flip_buffers() 264 atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]); in profile_flip_buffers() 265 hits[i].hits = hits[i].pc = 0; in profile_flip_buffers() 297 if (!hits) { in do_profile_hits() 310 hits[i + j].hits += nr_hits; in do_profile_hits() 312 } else if (!hits[i + j].hits) { in do_profile_hits() 314 hits[i + j].hits = nr_hits; in do_profile_hits() 327 atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]); in do_profile_hits() [all …]
|
/linux/tools/testing/selftests/bpf/benchs/ |
A D | bench_count.c | 8 struct counter hits; member 16 atomic_inc(&ctx->hits.value); in count_global_producer() 30 res->hits = atomic_swap(&ctx->hits.value, 0); in count_global_measure() 36 struct counter *hits; member 43 ctx->hits = calloc(env.consumer_cnt, sizeof(*ctx->hits)); in count_local_setup() 44 if (!ctx->hits) in count_local_setup() 54 atomic_inc(&ctx->hits[idx].value); in count_local_producer() 70 res->hits += atomic_swap(&ctx->hits[i].value, 0); in count_local_measure()
|
A D | bench_rename.c | 10 struct counter hits; member 37 atomic_inc(&ctx.hits.value); in producer() 43 res->hits = atomic_swap(&ctx.hits.value, 0); in measure()
|
A D | bench_trigger.c | 32 res->hits = atomic_swap(&base_hits.value, 0); in trigger_base_measure() 44 res->hits = atomic_swap(&ctx.skel->bss->hits, 0); in trigger_measure()
|
A D | run_common.sh | 21 function hits() function
|
A D | bench_ringbufs.c | 131 res->hits = atomic_swap(&buf_hits.value, 0); in ringbuf_libbpf_measure() 222 res->hits = atomic_swap(&buf_hits.value, 0); in ringbuf_custom_measure() 351 res->hits = atomic_swap(&buf_hits.value, 0); in perfbuf_measure()
|
/linux/tools/testing/selftests/bpf/progs/ |
A D | trigger_bench.c | 11 long hits = 0; variable 16 __sync_add_and_fetch(&hits, 1); in bench_trigger_tp() 24 __sync_add_and_fetch(&hits, 1); in BPF_PROG() 31 __sync_add_and_fetch(&hits, 1); in bench_trigger_kprobe() 38 __sync_add_and_fetch(&hits, 1); in bench_trigger_fentry() 45 __sync_add_and_fetch(&hits, 1); in bench_trigger_fentry_sleep() 52 __sync_add_and_fetch(&hits, 1); in bench_trigger_fmodret()
|
/linux/mm/ |
A D | swap_state.c | 52 #define SWAP_RA_VAL(addr, win, hits) \ argument 55 ((hits) & SWAP_RA_HITS_MASK)) 362 int win, hits; in lookup_swap_cache() local 366 hits = SWAP_RA_HITS(ra_val); in lookup_swap_cache() 368 hits = min_t(int, hits + 1, SWAP_RA_HITS_MAX); in lookup_swap_cache() 370 SWAP_RA_VAL(addr, win, hits)); in lookup_swap_cache() 536 int hits, in __swapin_nr_pages() argument 547 pages = hits + 2; in __swapin_nr_pages() 577 unsigned int hits, pages, max_pages; in swapin_nr_pages() local 588 if (!hits) in swapin_nr_pages() [all …]
|
/linux/drivers/cpuidle/governors/ |
A D | teo.c | 131 unsigned int hits; member 207 bin->hits -= bin->hits >> DECAY_SHIFT; in teo_update() 210 cpu_data->total += bin->hits + bin->intercepts; in teo_update() 233 cpu_data->state_bins[idx_timer].hits += PULSE; in teo_update() 340 hit_sum += prev_bin->hits; in teo_select()
|
/linux/fs/ |
A D | fs_struct.c | 69 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/tools/testing/selftests/bpf/ |
A D | bench.c | 56 long total = res->false_hits + res->hits + res->drops; in false_hits_report_progress() 71 total_hits += res[i].hits; in false_hits_report_final() 88 hits_per_sec = res->hits / 1000000.0 / (delta_ns / 1000000000.0); in hits_drops_report_progress() 107 hits_mean += res[i].hits / 1000000.0 / (0.0 + res_cnt); in hits_drops_report_final() 114 hits_stddev += (hits_mean - res[i].hits / 1000000.0) * in hits_drops_report_final() 115 (hits_mean - res[i].hits / 1000000.0) / in hits_drops_report_final() 120 total_ops = res[i].hits + res[i].drops; in hits_drops_report_final()
|
A D | bench.h | 34 long hits; member
|
/linux/tools/power/cpupower/utils/idle_monitor/ |
A D | cpupower-monitor.c | 223 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/drivers/net/ethernet/marvell/mvpp2/ |
A D | mvpp2_debugfs.c | 62 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/tools/perf/Documentation/ |
A D | perf-buildid-list.txt | 25 --with-hits:: 26 Show only DSOs with hits.
|
A D | perf-annotate.txt | 143 global-period, local-period, global-hits, local-hits 147 The period/hits keywords set the base the percentage is computed 148 on - the samples period or the number of samples (hits).
|
A D | perf-archive.txt | 15 This command runs perf-buildid-list --with-hits, and collects the files with the
|
/linux/lib/ |
A D | lru_cache.c | 203 lc->hits = 0; in lc_reset() 241 lc->hits, lc->misses, lc->starving, lc->locked, lc->changed); in lc_seq_printf_stats() 388 ++lc->hits; in __lc_get() 392 ++lc->hits; in __lc_get()
|
/linux/drivers/md/ |
A D | dm-cache-policy-smq.c | 516 unsigned hits; member 529 s->hits = 0u; in stats_init() 535 s->hits = s->misses = 0u; in stats_reset() 541 s->hits++; in stats_level_accessed() 559 unsigned confidence = safe_div(s->hits << FP_SHIFT, s->hits + s->misses); in stats_assess() 1031 unsigned hits = mq->cache_stats.hits; in default_promote_level() local 1033 unsigned index = safe_div(hits << 4u, hits + misses); in default_promote_level()
|
/linux/Documentation/devicetree/bindings/arc/ |
A D | archs-pct.txt | 4 CPU and cache events like cache misses and hits. Like conventional PCT there
|
A D | pct.txt | 4 CPU and cache events like cache misses and hits. Like conventional PCT there
|
/linux/tools/perf/ |
A D | perf-archive.sh | 24 perf buildid-list -i $PERF_DATA --with-hits | grep -v "^ " > $BUILDIDS
|
/linux/Documentation/trace/ |
A D | kprobetrace.rst | 148 You can check the total number of probe hits and probe miss-hits via 150 The first column is event name, the second is the number of probe hits, 151 the third is the number of probe miss-hits. 255 Each line shows when the kernel hits an event, and <- SYMBOL means kernel
|
/linux/drivers/acpi/acpica/ |
A D | dbstats.c | 86 "%8.2X %8.2X %8.2X %8.2X\n", list->requests, list->hits, in acpi_db_list_info() 87 list->requests - list->hits, list->object_size); in acpi_db_list_info()
|
/linux/Documentation/admin-guide/hw-vuln/ |
A D | multihit.rst | 6 instruction fetch hits multiple entries in the instruction TLB. This can 109 the possibility of multiple hits. 118 the nested guest can trigger multiple iTLB hits by modifying its own
|