Home
last modified time | relevance | path

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

/kernel/bpf/
Dbloom_filter.c33 u32 h; in hash() local
36 h = jhash2(value, bloom->aligned_u32_count, in hash()
39 h = jhash(value, value_size, bloom->hash_seed + index); in hash()
41 return h & bloom->bitset_mask; in hash()
48 u32 i, h; in bloom_map_peek_elem() local
51 h = hash(bloom, value, map->value_size, i); in bloom_map_peek_elem()
52 if (!test_bit(h, bloom->bitset)) in bloom_map_peek_elem()
63 u32 i, h; in bloom_map_push_elem() local
69 h = hash(bloom, value, map->value_size, i); in bloom_map_push_elem()
70 set_bit(h, bloom->bitset); in bloom_map_push_elem()
/kernel/trace/
Dtrace_events_filter_test.h12 TP_PROTO(int a, int b, int c, int d, int e, int f, int g, int h),
14 TP_ARGS(a, b, c, d, e, f, g, h),
24 __field(int, h)
35 __entry->h = h;
40 __entry->e, __entry->f, __entry->g, __entry->h)
Dtrace_events_filter.c2305 .e = ve, .f = vf, .g = vg, .h = vh }, \
/kernel/
D.gitignore4 /gki_module_exported.h
5 /gki_module_protected.h
6 /module/gki_module_protected_exports.h
7 /module/gki_module_unprotected.h
Dgen_kheaders.sh44 headers_md5="$(find $all_dirs -name "*.h" |
45 grep -v "include/generated/utsversion.h" |
46 grep -v "include/generated/autoconf.h" |
Dsoftirq.c575 struct softirq_action *h; in __do_softirq() local
603 h = softirq_vec; in __do_softirq()
609 h += softirq_bit - 1; in __do_softirq()
611 vec_nr = h - softirq_vec; in __do_softirq()
617 h->action(h); in __do_softirq()
621 vec_nr, softirq_to_name[vec_nr], h->action, in __do_softirq()
625 h++; in __do_softirq()
Daudit_watch.c288 int h = audit_hash_ino((u32)ino); in audit_update_watch() local
299 list_add_rcu(&nentry->list, &audit_inode_hash[h]); in audit_update_watch()
405 int h, ret = 0; in audit_add_watch() local
439 h = audit_hash_ino((u32)watch->ino); in audit_add_watch()
440 *list = &audit_inode_hash[h]; in audit_add_watch()
Dauditfilter.c904 int h; in audit_find_rule() local
907 h = audit_hash_ino(entry->rule.inode_f->val); in audit_find_rule()
908 *p = list = &audit_inode_hash[h]; in audit_find_rule()
911 for (h = 0; h < AUDIT_INODE_BUCKETS; h++) { in audit_find_rule()
912 list = &audit_inode_hash[h]; in audit_find_rule()
Dauditsc.c871 int h = audit_hash_ino((u32)n->ino); in audit_filter_inode_name() local
872 struct list_head *list = &audit_inode_hash[h]; in audit_filter_inode_name()
/kernel/module/
DMakefile28 $(obj)/gki_module.o: include/generated/gki_module_protected_exports.h \
29 include/generated/gki_module_unprotected.h
33 include/generated/gki_module_unprotected.h: $(ALL_KMI_SYMBOLS) \
51 include/generated/gki_module_protected_exports.h: $(ABI_PROTECTED_EXPORTS_FILE) \
/kernel/irq/
Dirqdomain.c429 struct irq_domain *h, *found = NULL; in irq_find_matching_fwspec() local
443 list_for_each_entry(h, &irq_domain_list, link) { in irq_find_matching_fwspec()
444 if (h->ops->select && fwspec->param_count) in irq_find_matching_fwspec()
445 rc = h->ops->select(h, fwspec, bus_token); in irq_find_matching_fwspec()
446 else if (h->ops->match) in irq_find_matching_fwspec()
447 rc = h->ops->match(h, to_of_node(fwnode), bus_token); in irq_find_matching_fwspec()
449 rc = ((fwnode != NULL) && (h->fwnode == fwnode) && in irq_find_matching_fwspec()
451 (h->bus_token == bus_token))); in irq_find_matching_fwspec()
454 found = h; in irq_find_matching_fwspec()
472 struct irq_domain *h; in irq_domain_check_msi_remap() local
[all …]
/kernel/bpf/preload/iterators/
DMakefile38 all: iterators.lskel.h
44 iterators.lskel.h: $(OUTPUT)/iterators.bpf.o | $(BPFTOOL)
DREADME2 If you change "iterators.bpf.c" do "make -j" in this directory to rebuild "iterators.skel.h".
/kernel/time/
Dtimeconst.bc51 print "#include <linux/param.h>\n"
52 print "#include <linux/types.h>\n\n"
55 print "#error \qinclude/generated/timeconst.h has the wrong HZ value!\q\n"
Dtimer.c1805 static __latent_entropy void run_timer_softirq(struct softirq_action *h) in run_timer_softirq() argument
Dhrtimer.c1756 static __latent_entropy void hrtimer_run_softirq(struct softirq_action *h) in hrtimer_run_softirq() argument
/kernel/power/
DKconfig252 functions from <linux/resume-trace.h> as well as the
253 <asm/resume-trace.h> header with a TRACE_RESUME() macro.
/kernel/locking/
Dlockdep.c984 static bool in_list(struct list_head *e, struct list_head *h) in in_list() argument
988 list_for_each(f, h) { in in_list()
1014 static bool class_lock_list_valid(struct lock_class *c, struct list_head *h) in class_lock_list_valid() argument
1018 list_for_each_entry(e, h, entry) { in class_lock_list_valid()
/kernel/rcu/
Dtree.c2571 static void rcu_core_si(struct softirq_action *h) in rcu_core_si() argument
/kernel/sched/
Dfair.c11808 static __latent_entropy void run_rebalance_domains(struct softirq_action *h) in run_rebalance_domains() argument