Home
last modified time | relevance | path

Searched defs:hashmap (Results 1 – 5 of 5) sorted by relevance

/kernel/linux/linux-5.10/tools/lib/bpf/
Dhashmap.h52 struct hashmap { struct
53 hashmap_hash_fn hash_fn; argument
54 hashmap_equal_fn equal_fn; argument
57 struct hashmap_entry **buckets; argument
73 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, argument
/kernel/linux/linux-5.10/tools/perf/util/
Dhashmap.h52 struct hashmap { struct
53 hashmap_hash_fn hash_fn; argument
54 hashmap_equal_fn equal_fn; argument
57 struct hashmap_entry **buckets; argument
73 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, argument
/kernel/linux/linux-6.6/tools/lib/bpf/
Dhashmap.h72 struct hashmap { struct
73 hashmap_hash_fn hash_fn; argument
74 hashmap_equal_fn equal_fn; argument
77 struct hashmap_entry **buckets; argument
83 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, argument
/kernel/linux/linux-6.6/tools/perf/util/
Dhashmap.h72 struct hashmap { struct
73 hashmap_hash_fn hash_fn; argument
74 hashmap_equal_fn equal_fn; argument
77 struct hashmap_entry **buckets; argument
83 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, argument
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/benchs/
Dbench_local_storage.c115 static void __setup(struct bpf_program *prog, bool hashmap) in __setup()