/Linux-v4.19/kernel/trace/ |
D | ring_buffer_benchmark.c | 237 unsigned long hit = 0; in ring_buffer_producer() local 258 hit++; in ring_buffer_producer() 335 trace_printk("Hit: %ld\n", hit); in ring_buffer_producer() 340 hit /= (long)time; in ring_buffer_producer() 344 trace_printk("Entries per millisec: %ld\n", hit); in ring_buffer_producer() 346 if (hit) { in ring_buffer_producer() 348 avg = NSEC_PER_MSEC / hit; in ring_buffer_producer() 357 hit + missed); in ring_buffer_producer() 360 if (!(hit + missed)) { in ring_buffer_producer() 362 hit--; /* make it non zero */ in ring_buffer_producer() [all …]
|
/Linux-v4.19/fs/fat/ |
D | cache.c | 86 struct fat_cache *hit = &nohit, *p; in fat_cache_lookup() local 92 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) { in fat_cache_lookup() 93 hit = p; in fat_cache_lookup() 94 if ((hit->fcluster + hit->nr_contig) < fclus) { in fat_cache_lookup() 95 offset = hit->nr_contig; in fat_cache_lookup() 97 offset = fclus - hit->fcluster; in fat_cache_lookup() 102 if (hit != &nohit) { in fat_cache_lookup() 103 fat_cache_update_lru(inode, hit); in fat_cache_lookup() 106 cid->nr_contig = hit->nr_contig; in fat_cache_lookup() 107 cid->fcluster = hit->fcluster; in fat_cache_lookup() [all …]
|
/Linux-v4.19/drivers/isdn/mISDN/ |
D | dsp_ecdis.h | 39 int hit; member 64 det->hit = 0; in echo_can_disable_detector_init() 94 det->hit = TRUE; in echo_can_disable_detector_update() 107 return det->hit; in echo_can_disable_detector_update()
|
/Linux-v4.19/Documentation/device-mapper/ |
D | cache-policies.txt | 20 doesn't update states (eg, hit counts) for a block more than once 64 pointers. It avoids storing an explicit hit count for each block. It 74 based on their hit count (~ln(hit count)). This meant the bottom 79 smq does not maintain a hit count, instead it swaps hit entries with 86 The mq policy maintained a hit count for each cache block. For a 87 different block to get promoted to the cache its hit count has to 91 smq doesn't maintain hit counts, so a lot of this problem just goes
|
/Linux-v4.19/drivers/md/bcache/ |
D | stats.c | 185 bool hit, bool bypass) in mark_cache_stats() argument 188 if (hit) in mark_cache_stats() 193 if (hit) in mark_cache_stats() 200 bool hit, bool bypass) in bch_mark_cache_accounting() argument 204 mark_cache_stats(&dc->accounting.collector, hit, bypass); in bch_mark_cache_accounting() 205 mark_cache_stats(&c->accounting.collector, hit, bypass); in bch_mark_cache_accounting()
|
D | stats.h | 57 bool hit, bool bypass);
|
/Linux-v4.19/fs/coda/ |
D | cache.c | 65 int hit; in coda_cache_check() local 68 hit = (mask & cii->c_cached_perm) == mask && in coda_cache_check() 73 return hit; in coda_cache_check()
|
/Linux-v4.19/tools/perf/Documentation/ |
D | perf-kmem.txt | 44 Sort the output (default: 'frag,hit,bytes' for slab and 'bytes,hit' 45 for page). Available sort keys are 'ptr, callsite, bytes, hit, 46 pingpong, frag' for slab and 'page, callsite, bytes, hit, order,
|
/Linux-v4.19/net/wireless/ |
D | radiotap.c | 216 int hit = 0; in ieee80211_radiotap_iterator_next() local 336 hit = 1; in ieee80211_radiotap_iterator_next() 359 hit = 1; in ieee80211_radiotap_iterator_next() 366 if (hit) in ieee80211_radiotap_iterator_next()
|
/Linux-v4.19/tools/perf/util/ |
D | callchain.c | 383 if (rnode->hit < chain->hit) in rb_insert_callchain() 420 if (node->hit && node->hit >= min_hit) in __sort_chain_flat() 646 new->hit = period; in add_child() 804 new->hit = parent->hit; in split_add_child() 820 parent->hit = 0; in split_add_child() 847 parent->hit = period; in split_add_child() 957 root->hit += period; in append_chain() 1007 if (src->hit) { in merge_chain_branch() 1009 if (append_chain_children(dst, cursor, src->hit) < 0) in merge_chain_branch() 1176 period = node->hit; in callchain_node__scnprintf_value() [all …]
|
D | mem-events.c | 120 u64 hit, miss; in perf_mem__tlb_scnprintf() local 128 hit = m & PERF_MEM_TLB_HIT; in perf_mem__tlb_scnprintf() 145 if (hit) in perf_mem__tlb_scnprintf() 182 u64 hit, miss; in perf_mem__lvl_scnprintf() local 191 hit = m & PERF_MEM_LVL_HIT; in perf_mem__lvl_scnprintf() 228 if (hit) in perf_mem__lvl_scnprintf()
|
D | callchain.h | 66 u64 hit; member 166 root->node.hit = 0; in callchain_init() 174 return node->hit + node->children_hit; in callchain_cumul_hits()
|
/Linux-v4.19/arch/arm64/mm/ |
D | context.c | 124 bool hit = false; in check_update_reserved_asid() local 137 hit = true; in check_update_reserved_asid() 142 return hit; in check_update_reserved_asid()
|
/Linux-v4.19/arch/arm/probes/kprobes/ |
D | test-core.c | 1166 int hit; member 1188 probe->hit = -1; in register_test_probe() 1196 container_of(p, struct test_probe, kprobe)->hit = test_instance; in test_before_pre_handler() 1212 container_of(p, struct test_probe, kprobe)->hit = test_instance; in test_case_pre_handler() 1221 if (container_of(p, struct test_probe, kprobe)->hit == test_instance) in test_after_pre_handler() 1240 container_of(p, struct test_probe, kprobe)->hit = test_instance; in test_after_pre_handler() 1484 if (test_before_probe.hit != test_instance) { in kprobes_test_case_end() 1489 if (test_after_probe.hit != test_instance && in kprobes_test_case_end() 1490 test_after2_probe.hit != test_instance) { in kprobes_test_case_end() 1514 if (test_case_probe.hit != test_instance) { in kprobes_test_case_end() [all …]
|
/Linux-v4.19/arch/arm/mm/ |
D | context.c | 171 bool hit = false; in check_update_reserved_asid() local 184 hit = true; in check_update_reserved_asid() 189 return hit; in check_update_reserved_asid()
|
/Linux-v4.19/net/unix/ |
D | garbage.c | 170 bool hit = false; in scan_inflight() local 187 hit = true; in scan_inflight() 193 if (hit && hitlist != NULL) { in scan_inflight()
|
/Linux-v4.19/Documentation/devicetree/bindings/auxdisplay/ |
D | hit,hd44780.txt | 8 - compatible: Must contain "hit,hd44780", 34 compatible = "hit,hd44780";
|
/Linux-v4.19/Documentation/devicetree/bindings/display/panel/ |
D | hit,tx23d38vm0caa.txt | 4 - compatible: should be "hit,tx23d38vm0caa"
|
/Linux-v4.19/tools/perf/ |
D | builtin-kmem.c | 60 u32 hit; member 100 data->hit++; in insert_alloc_stat() 111 data->hit = 1; in insert_alloc_stat() 145 data->hit++; in insert_caller_stat() 156 data->hit = 1; in insert_caller_stat() 1020 (unsigned long)data->bytes_alloc / data->hit, in __print_slab_result() 1022 (unsigned long)data->bytes_req / data->hit, in __print_slab_result() 1023 (unsigned long)data->hit, in __print_slab_result() 1446 if (l->hit < r->hit) in hit_cmp() 1448 else if (l->hit > r->hit) in hit_cmp()
|
/Linux-v4.19/drivers/staging/speakup/ |
D | DefaultKeyAssignments | 9 hit the keypad period. 36 KeyPad-Enter Shut Up (until another key is hit) and sync reading cursor
|
/Linux-v4.19/tools/testing/selftests/rcutorture/doc/ |
D | TINY_RCU.txt | 10 The theory here is that randconfig testing will hit the other six possible
|
/Linux-v4.19/Documentation/s390/ |
D | 3270.txt | 194 and hit ENTER to execute them. 200 and more output will appear. You may hit ENTER with nothing typed in 202 which indicates no scrolling will occur. (If you hit ENTER with "Linux 211 Other things you may do when the log area fills up are: hit PA2 to 212 clear the log area and write more output to it, or hit CLEAR to clear 241 may hit PF10 again for the next-most-recent command, and so on. A 262 hit PF24. Want to see the command line first, before you execute it?
|
/Linux-v4.19/drivers/gpu/drm/amd/display/ |
D | Kconfig | 23 if you want to hit
|
/Linux-v4.19/Documentation/ |
D | kprobes.txt | 30 routine to be invoked when the breakpoint is hit. 45 the probe is hit. 111 probe is hit, Kprobes saves a copy of the return address, and replaces 117 passes to the trampoline and that probe is hit. Kprobes' trampoline 148 function entry is hit, the user-defined entry_handler, if any, is invoked. 175 sysctl(8)), Kprobes tries to reduce probe-hit overhead by using a jump 237 it. If the to-be-optimized probepoint is hit before being optimized, 364 hit, Kprobes calls kp->pre_handler. After the probed instruction 370 so, its handlers aren't hit until calling enable_kprobe(kp). 404 the breakpoint was hit. Return 0 here unless you're a Kprobes geek. [all …]
|
/Linux-v4.19/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_binding.c | 1047 unsigned long hit = 0; in vmw_binding_emit_dirty() local 1049 while ((hit = find_next_bit(&cbs->dirty, VMW_BINDING_NUM_BITS, hit)) in vmw_binding_emit_dirty() 1052 switch (hit) { in vmw_binding_emit_dirty() 1071 __clear_bit(hit, &cbs->dirty); in vmw_binding_emit_dirty() 1072 hit++; in vmw_binding_emit_dirty()
|