Home
last modified time | relevance | path

Searched refs:_key (Results 1 – 3 of 3) sorted by relevance

/tools/perf/util/
Dhashmap.h179 #define hashmap__for_each_key_entry(map, cur, _key) \ argument
181 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \
185 if (map->equal_fn(cur->key, (_key), map->ctx))
187 #define hashmap__for_each_key_entry_safe(map, cur, tmp, _key) \ argument
189 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \
193 if (map->equal_fn(cur->key, (_key), map->ctx))
/tools/lib/bpf/
Dhashmap.h179 #define hashmap__for_each_key_entry(map, cur, _key) \ argument
181 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \
185 if (map->equal_fn(cur->key, (_key), map->ctx))
187 #define hashmap__for_each_key_entry_safe(map, cur, tmp, _key) \ argument
189 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \
193 if (map->equal_fn(cur->key, (_key), map->ctx))
/tools/lib/lockdep/include/liblockdep/
Dcommon.h51 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \ argument
52 { .name = (_name), .key = (void *)(_key), }