Lines Matching refs:ht
43 struct hash_table *ht;
54 ht = _mesa_hash_table_create(NULL, NULL, _mesa_key_string_equal);
59 _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str1, NULL);
60 _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str2, NULL);
61 _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str3, NULL);
63 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1);
66 entry2 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str2);
70 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1);
74 _mesa_hash_table_remove(ht, entry1);
75 entry2 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str2);
79 _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str2, NULL);
80 entry2 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str2);
81 hash_table_foreach(ht, search_entry) {
88 _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str1, NULL);
92 _mesa_hash_table_insert_pre_hashed(ht, _mesa_hash_string(key), key, NULL);
94 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1);
96 entry2 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str2);
99 _mesa_hash_table_destroy(ht, entry_free);