Home
last modified time | relevance | path

Searched refs:key_equals_function (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/util/
Dset.c122 bool (*key_equals_function)(const void *a, in _mesa_set_create()
138 ht->key_equals_function = key_equals_function; in _mesa_set_create()
260 if (ht->key_equals_function(key, entry->key)) { in set_search()
398 ht->key_equals_function(key, entry->key)) { in set_search_or_add()
602 assert(a->key_equals_function == b->key_equals_function); in _mesa_set_intersects()
Dhash_table.h50 bool (*key_equals_function)(const void *a, const void *b); member
65 bool (*key_equals_function)(const void *a,
72 bool (*key_equals_function)(const void *a,
Dhash_table.c152 bool (*key_equals_function)(const void *a, in _mesa_hash_table_init()
162 ht->key_equals_function = key_equals_function; in _mesa_hash_table_init()
174 bool (*key_equals_function)(const void *a, in _mesa_hash_table_create()
186 if (!_mesa_hash_table_init(ht, ht, key_hash_function, key_equals_function)) { in _mesa_hash_table_create()
296 if (ht->key_equals_function(key, entry->key)) { in hash_table_search()
437 ht->key_equals_function(key, entry->key)) { in hash_table_insert()
Dset.h47 bool (*key_equals_function)(const void *a, const void *b); member
61 bool (*key_equals_function)(const void *a,