HomeSort by relevance Sort by last modified time
    Searched refs:key_hash_function (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/util/
set.c 107 uint32_t (*key_hash_function)(const void *key),
121 ht->key_hash_function = key_hash_function;
193 assert(set->key_hash_function);
194 return set_search(set, set->key_hash_function(key), key);
201 assert(set->key_hash_function == NULL ||
202 hash == set->key_hash_function(key));
315 assert(set->key_hash_function);
316 return set_add(set, set->key_hash_function(key), key);
322 assert(set->key_hash_function == NULL |
    [all...]
hash_table.c 114 uint32_t (*key_hash_function)(const void *key),
128 ht->key_hash_function = key_hash_function;
244 assert(ht->key_hash_function);
245 return hash_table_search(ht, ht->key_hash_function(key), key);
252 assert(ht->key_hash_function == NULL || hash == ht->key_hash_function(key));
370 assert(ht->key_hash_function);
371 return hash_table_insert(ht, ht->key_hash_function(key), key, data);
378 assert(ht->key_hash_function == NULL || hash == ht->key_hash_function(key))
    [all...]
set.h 46 uint32_t (*key_hash_function)(const void *key); member in struct:set
58 uint32_t (*key_hash_function)(const void *key),
hash_table.h 49 uint32_t (*key_hash_function)(const void *key); member in struct:hash_table
62 uint32_t (*key_hash_function)(const void *key),

Completed in 334 milliseconds