/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_hashtab.c | 60 struct drm_hash_item_list *h_list; local in function:drm_ht_verbose_list 66 h_list = &ht->table[hashed_key & ht->mask]; 67 LIST_FOREACH(entry, h_list, head) 75 struct drm_hash_item_list *h_list; local in function:drm_ht_find_key 79 h_list = &ht->table[hashed_key & ht->mask]; 80 LIST_FOREACH(entry, h_list, head) { 93 struct drm_hash_item_list *h_list; local in function:drm_ht_insert_item 98 h_list = &ht->table[hashed_key & ht->mask]; 100 LIST_FOREACH(entry, h_list, head) { 110 LIST_INSERT_HEAD(h_list, item, head) [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_hashtab.c | 71 struct hlist_head *h_list; local in function:drm_ht_verbose_list 77 h_list = &ht->table[hashed_key]; 78 hlist_for_each_entry(entry, h_list, head) 86 struct hlist_head *h_list; local in function:drm_ht_find_key 90 h_list = &ht->table[hashed_key]; 91 hlist_for_each_entry(entry, h_list, head) { 104 struct hlist_head *h_list; local in function:drm_ht_find_key_rcu 108 h_list = &ht->table[hashed_key]; 109 hlist_for_each_entry_rcu(entry, h_list, head) { 121 struct hlist_head *h_list; local in function:drm_ht_insert_item [all...] |