Searched refs:hash_combine (Results 1 – 1 of 1) sorted by relevance
/kernel/linux/linux-5.10/tools/lib/bpf/ |
D | btf.c | 2876 static long hash_combine(long h, long value) in hash_combine() function 3293 h = hash_combine(0, t->name_off); in btf_hash_common() 3294 h = hash_combine(h, t->info); in btf_hash_common() 3295 h = hash_combine(h, t->size); in btf_hash_common() 3313 h = hash_combine(h, info); in btf_hash_int() 3335 h = hash_combine(0, t->name_off); in btf_hash_enum() 3336 h = hash_combine(h, t->info & ~0xffff); in btf_hash_enum() 3337 h = hash_combine(h, t->size); in btf_hash_enum() 3391 h = hash_combine(h, member->name_off); in btf_hash_struct() 3392 h = hash_combine(h, member->offset); in btf_hash_struct() [all …]
|