Lines Matching refs:table
55 ht->table = NULL;
56 if (size <= PAGE_SIZE / sizeof(*ht->table))
57 ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL);
59 ht->table = vzalloc(array_size(size, sizeof(*ht->table)));
60 if (!ht->table) {
61 DRM_ERROR("Out of memory for hash table\n");
77 h_list = &ht->table[hashed_key];
90 h_list = &ht->table[hashed_key];
108 h_list = &ht->table[hashed_key];
127 h_list = &ht->table[hashed_key];
209 if (ht->table) {
210 kvfree(ht->table);
211 ht->table = NULL;