Home
last modified time | relevance | path

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

/tools/lib/bpf/
Dhashmap.h162 #define hashmap__for_each_key_entry(map, cur, _key) \ argument
163 for (cur = ({ size_t bkt = hash_bits(map->hash_fn((_key), map->ctx),\
168 if (map->equal_fn(cur->key, (_key), map->ctx))
170 #define hashmap__for_each_key_entry_safe(map, cur, tmp, _key) \ argument
171 for (cur = ({ size_t bkt = hash_bits(map->hash_fn((_key), map->ctx),\
176 if (map->equal_fn(cur->key, (_key), map->ctx))
/tools/lib/lockdep/include/liblockdep/
Dcommon.h52 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \ argument
53 { .name = (_name), .key = (void *)(_key), }