| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/ |
| H A D | assoc_container.hpp | 211 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::cc_hash_table 221 cc_hash_table(const hash_fn& h) in cc_hash_table() 228 cc_hash_table(const hash_fn& h, const eq_fn& e) in cc_hash_table() 236 cc_hash_table(const hash_fn& h, const eq_fn& e, const comb_hash_fn& ch) in cc_hash_table() 245 cc_hash_table(const hash_fn& h, const eq_fn& e, const comb_hash_fn& ch, in cc_hash_table() 260 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table() 271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table() 283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() 297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() 375 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::gp_hash_table [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/ |
| H A D | assoc_container.hpp | 211 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::cc_hash_table 221 cc_hash_table(const hash_fn& h) in cc_hash_table() 228 cc_hash_table(const hash_fn& h, const eq_fn& e) in cc_hash_table() 236 cc_hash_table(const hash_fn& h, const eq_fn& e, const comb_hash_fn& ch) in cc_hash_table() 245 cc_hash_table(const hash_fn& h, const eq_fn& e, const comb_hash_fn& ch, in cc_hash_table() 260 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table() 271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table() 283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() 297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() 375 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::gp_hash_table [all …]
|
| /OK3568_Linux_fs/kernel/tools/lib/bpf/ |
| H A D | hashmap.c | 38 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, in hashmap__init() argument 41 map->hash_fn = hash_fn; in hashmap__init() 51 struct hashmap *hashmap__new(hashmap_hash_fn hash_fn, in hashmap__new() argument 59 hashmap__init(map, hash_fn, equal_fn, ctx); in hashmap__new() 118 h = hash_bits(map->hash_fn(cur->key, map->ctx), new_cap_bits); in hashmap_grow() 167 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__insert() 191 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__insert() 211 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__find() 226 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__delete()
|
| H A D | hashmap.h | 53 hashmap_hash_fn hash_fn; member 63 #define HASHMAP_INIT(hash_fn, equal_fn, ctx) { \ argument 64 .hash_fn = (hash_fn), \ 73 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, 75 struct hashmap *hashmap__new(hashmap_hash_fn hash_fn, 181 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \ 189 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \
|
| H A D | btf.c | 2952 hashmap_hash_fn hash_fn = btf_dedup_identity_hash_fn; in btf_dedup_new() local 2961 hash_fn = btf_dedup_collision_hash_fn; in btf_dedup_new() 2966 d->dedup_table = hashmap__new(hash_fn, btf_dedup_equal_fn, NULL); in btf_dedup_new()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | hashmap.c | 38 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, in hashmap__init() argument 41 map->hash_fn = hash_fn; in hashmap__init() 51 struct hashmap *hashmap__new(hashmap_hash_fn hash_fn, in hashmap__new() argument 59 hashmap__init(map, hash_fn, equal_fn, ctx); in hashmap__new() 118 h = hash_bits(map->hash_fn(cur->key, map->ctx), new_cap_bits); in hashmap_grow() 167 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__insert() 191 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__insert() 211 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__find() 226 h = hash_bits(map->hash_fn(key, map->ctx), map->cap_bits); in hashmap__delete()
|
| H A D | hashmap.h | 53 hashmap_hash_fn hash_fn; member 63 #define HASHMAP_INIT(hash_fn, equal_fn, ctx) { \ argument 64 .hash_fn = (hash_fn), \ 73 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, 75 struct hashmap *hashmap__new(hashmap_hash_fn hash_fn, 181 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \ 189 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/ |
| H A D | hashmap.c | 13 static size_t hash_fn(const void *k, void *ctx) in hash_fn() function 50 map = hashmap__new(hash_fn, equal_fn, NULL); in test_hashmap_generic() 341 map = hashmap__new(hash_fn, equal_fn, NULL); in test_hashmap_empty()
|
| /OK3568_Linux_fs/kernel/include/linux/mlx4/ |
| H A D | qp.h | 130 u8 hash_fn; member
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx4/ |
| H A D | en_rx.c | 1223 rss_context->hash_fn = MLX4_RSS_HASH_TOP; in mlx4_en_config_rss_steer() 1225 rss_context->hash_fn = MLX4_RSS_HASH_XOR; in mlx4_en_config_rss_steer() 1227 rss_context->hash_fn = MLX4_RSS_HASH_TOP; in mlx4_en_config_rss_steer()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/cc_hash_table_map_/ |
| H A D | cc_ht_map_.hpp | 197 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::detail::PB_DS_CC_HASH_NAME
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/gp_hash_table_map_/ |
| H A D | gp_ht_map_.hpp | 202 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::detail::PB_DS_GP_HASH_NAME
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/cc_hash_table_map_/ |
| H A D | cc_ht_map_.hpp | 197 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::detail::PB_DS_CC_HASH_NAME
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/gp_hash_table_map_/ |
| H A D | gp_ht_map_.hpp | 202 typedef Hash_Fn hash_fn; typedef in __gnu_pbds::detail::PB_DS_GP_HASH_NAME
|
| /OK3568_Linux_fs/kernel/kernel/dma/ |
| H A D | debug.c | 236 static int hash_fn(struct dma_debug_entry *entry) in hash_fn() function 252 int idx = hash_fn(entry); in get_hash_bucket()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/files/ |
| H A D | buildhistory_filelist1.txt | 2245 drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn 2246 -rw-r--r-- root root 2137 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direc… 2247 -rw-r--r-- root root 2127 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direc… 2248 -rw-r--r-- root root 1946 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/linea… 2249 -rw-r--r-- root root 3290 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mask_… 2250 -rw-r--r-- root root 2391 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mod_b… 2251 -rw-r--r-- root root 2009 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/probe… 2252 -rw-r--r-- root root 1953 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/quadr… 2253 -rw-r--r-- root root 10543 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/range… 2254 -rw-r--r-- root root 10256 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/range… [all …]
|
| H A D | buildhistory_filelist2.txt | 2246 drwxr-xr-x root root 4096 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn 2247 -rw-r--r-- root root 2137 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direc… 2248 -rw-r--r-- root root 2127 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/direc… 2249 -rw-r--r-- root root 1946 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/linea… 2250 -rw-r--r-- root root 3290 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mask_… 2251 -rw-r--r-- root root 2391 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/mod_b… 2252 -rw-r--r-- root root 2009 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/probe… 2253 -rw-r--r-- root root 1953 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/quadr… 2254 -rw-r--r-- root root 10543 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/range… 2255 -rw-r--r-- root root 10256 ./usr/include/c++/10.1.0/ext/pb_ds/detail/hash_fn/range… [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mlx4/ |
| H A D | qp.c | 2065 rss_context->hash_fn = MLX4_RSS_HASH_TOP; in fill_qp_rss_context()
|