Lines Matching refs:entry
46 struct hashmap_entry *entry, *tmp; in test_hashmap_generic() local
92 hashmap__for_each_entry(map, entry, bkt) { in test_hashmap_generic()
93 long k = entry->key; in test_hashmap_generic()
94 long v = entry->value; in test_hashmap_generic()
140 hashmap__for_each_entry_safe(map, entry, tmp, bkt) { in test_hashmap_generic()
141 long k = entry->key; in test_hashmap_generic()
142 long v = entry->value; in test_hashmap_generic()
154 hashmap__for_each_key_entry(map, entry, 0) { in test_hashmap_generic()
163 hashmap__for_each_key_entry_safe(map, entry, tmp, 0) { in test_hashmap_generic()
167 k = entry->key; in test_hashmap_generic()
168 v = entry->value; in test_hashmap_generic()
197 hashmap__for_each_entry_safe(map, entry, tmp, bkt) { in test_hashmap_generic()
201 k = entry->key; in test_hashmap_generic()
202 v = entry->value; in test_hashmap_generic()
230 hashmap__for_each_entry(map, entry, bkt) { in test_hashmap_generic()
233 entry->key, entry->value); in test_hashmap_generic()
238 hashmap__for_each_entry(map, entry, bkt) { in test_hashmap_generic()
241 entry->key, entry->value); in test_hashmap_generic()
342 struct hashmap_entry *entry; in test_hashmap_multimap() local
382 hashmap__for_each_entry(map, entry, bkt) { in test_hashmap_multimap()
383 found_msk |= entry->value; in test_hashmap_multimap()
391 hashmap__for_each_key_entry(map, entry, k1) { in test_hashmap_multimap()
392 found_msk |= entry->value; in test_hashmap_multimap()
400 hashmap__for_each_key_entry(map, entry, k2) { in test_hashmap_multimap()
401 found_msk |= entry->value; in test_hashmap_multimap()
413 struct hashmap_entry *entry; in test_hashmap_empty() local
436 hashmap__for_each_entry(map, entry, bkt) { in test_hashmap_empty()
440 hashmap__for_each_key_entry(map, entry, k) { in test_hashmap_empty()