Searched refs:key_equals_function (Results 1 – 4 of 4) sorted by relevance
/hardware/google/gfxstream/guest/mesa/src/util/ |
D | set.h | 47 bool (*key_equals_function)(const void *a, const void *b); member 61 bool (*key_equals_function)(const void *a, 67 bool (*key_equals_function)(const void *a,
|
D | set.c | 122 bool (*key_equals_function)(const void *a, in _mesa_set_init() 132 ht->key_equals_function = key_equals_function; in _mesa_set_init() 143 bool (*key_equals_function)(const void *a, in _mesa_set_create() 152 if (!_mesa_set_init(ht, ht, key_hash_function, key_equals_function)) { in _mesa_set_create() 279 if (ht->key_equals_function(key, entry->key)) { in set_search() 423 ht->key_equals_function(key, entry->key)) { in set_search_or_add() 621 assert(a->key_equals_function == b->key_equals_function); in _mesa_set_intersects()
|
D | hash_table.h | 49 bool (*key_equals_function)(const void *a, const void *b); member 64 bool (*key_equals_function)(const void *a, 71 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() 325 if (ht->key_equals_function(key, entry->key)) { in hash_table_search() 472 ht->key_equals_function(key, entry->key)) { in hash_table_insert()
|