Searched refs:key_equals_function (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/util/ |
D | set.c | 122 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()
|
D | hash_table.h | 50 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,
|
D | hash_table.c | 152 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()
|
D | set.h | 47 bool (*key_equals_function)(const void *a, const void *b); member 61 bool (*key_equals_function)(const void *a,
|