Lines Matching refs:table
46 ht->table = NULL; in drm_ht_create()
47 if (size <= PAGE_SIZE / sizeof(*ht->table)) in drm_ht_create()
48 ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL); in drm_ht_create()
50 ht->table = vzalloc(size*sizeof(*ht->table)); in drm_ht_create()
51 if (!ht->table) { in drm_ht_create()
68 h_list = &ht->table[hashed_key]; in drm_ht_verbose_list()
81 h_list = &ht->table[hashed_key]; in drm_ht_find_key()
99 h_list = &ht->table[hashed_key]; in drm_ht_find_key_rcu()
118 h_list = &ht->table[hashed_key]; in drm_ht_insert_item()
200 if (ht->table) { in drm_ht_remove()
201 if ((PAGE_SIZE / sizeof(*ht->table)) >> ht->order) in drm_ht_remove()
202 kfree(ht->table); in drm_ht_remove()
204 vfree(ht->table); in drm_ht_remove()
205 ht->table = NULL; in drm_ht_remove()