diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2015-01-15 07:58:07 -0800 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2015-01-15 13:21:27 -0800 |
commit | 8ed5305d28d9309d651dfec3fbf4349854694694 (patch) | |
tree | 0af9af419be48ecd3b00934cfd355c9285c1fd7d | |
parent | f0aec4ee1e364927f3003cabafa644035bcd803c (diff) |
hash_table: Rename insert_with_hash to insert_pre_hashed
We already have search_pre_hashed. This makes the APIs match better.
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
-rw-r--r-- | src/glsl/nir/nir_lower_locals_to_regs.c | 2 | ||||
-rw-r--r-- | src/mesa/main/hash.c | 2 | ||||
-rw-r--r-- | src/util/hash_table.c | 4 | ||||
-rw-r--r-- | src/util/hash_table.h | 4 | ||||
-rw-r--r-- | src/util/tests/hash_table/collision.c | 8 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/glsl/nir/nir_lower_locals_to_regs.c b/src/glsl/nir/nir_lower_locals_to_regs.c index c08a15b3d1..b187541405 100644 --- a/src/glsl/nir/nir_lower_locals_to_regs.c +++ b/src/glsl/nir/nir_lower_locals_to_regs.c @@ -118,7 +118,7 @@ get_reg_for_deref(nir_deref_var *deref, struct locals_to_regs_state *state) reg->num_components = glsl_get_vector_elements(tail->type); reg->num_array_elems = array_size > 1 ? array_size : 0; - _mesa_hash_table_insert_with_hash(state->regs_table, hash, deref, reg); + _mesa_hash_table_insert_pre_hashed(state->regs_table, hash, deref, reg); return reg; } diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index a8c796b9ac..1a152ec340 100644 --- a/src/mesa/main/hash.c +++ b/src/mesa/main/hash.c @@ -277,7 +277,7 @@ _mesa_HashInsert_unlocked(struct _mesa_HashTable *table, GLuint key, void *data) if (entry) { entry->data = data; } else { - _mesa_hash_table_insert_with_hash(table->ht, hash, uint_key(key), data); + _mesa_hash_table_insert_pre_hashed(table->ht, hash, uint_key(key), data); } } } diff --git a/src/util/hash_table.c b/src/util/hash_table.c index ac187b24ca..81816d1443 100644 --- a/src/util/hash_table.c +++ b/src/util/hash_table.c @@ -334,8 +334,8 @@ _mesa_hash_table_insert(struct hash_table *ht, const void *key, void *data) } struct hash_entry * -_mesa_hash_table_insert_with_hash(struct hash_table *ht, uint32_t hash, - const void *key, void *data) +_mesa_hash_table_insert_pre_hashed(struct hash_table *ht, uint32_t hash, + const void *key, void *data) { assert(ht->key_hash_function == NULL || hash == ht->key_hash_function(key)); return hash_table_insert(ht, hash, key, data); diff --git a/src/util/hash_table.h b/src/util/hash_table.h index 7f9fd6288e..eb9dbc333e 100644 --- a/src/util/hash_table.h +++ b/src/util/hash_table.h @@ -70,8 +70,8 @@ void _mesa_hash_table_set_deleted_key(struct hash_table *ht, struct hash_entry * _mesa_hash_table_insert(struct hash_table *ht, const void *key, void *data); struct hash_entry * -_mesa_hash_table_insert_with_hash(struct hash_table *ht, uint32_t hash, - const void *key, void *data); +_mesa_hash_table_insert_pre_hashed(struct hash_table *ht, uint32_t hash, + const void *key, void *data); struct hash_entry * _mesa_hash_table_search(struct hash_table *ht, const void *key); struct hash_entry * diff --git a/src/util/tests/hash_table/collision.c b/src/util/tests/hash_table/collision.c index 2da316dd72..b76782b32f 100644 --- a/src/util/tests/hash_table/collision.c +++ b/src/util/tests/hash_table/collision.c @@ -42,8 +42,8 @@ main(int argc, char **argv) ht = _mesa_hash_table_create(NULL, NULL, _mesa_key_string_equal); - _mesa_hash_table_insert_with_hash(ht, bad_hash, str1, NULL); - _mesa_hash_table_insert_with_hash(ht, bad_hash, str2, NULL); + _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str1, NULL); + _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str2, NULL); entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); assert(entry1->key == str1); @@ -63,11 +63,11 @@ main(int argc, char **argv) /* Put str1 back, then spam junk into the table to force a * resize and make sure we can still find them both. */ - _mesa_hash_table_insert_with_hash(ht, bad_hash, str1, NULL); + _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str1, NULL); for (i = 0; i < 100; i++) { char *key = malloc(10); sprintf(key, "spam%d", i); - _mesa_hash_table_insert_with_hash(ht, _mesa_hash_string(key), key, NULL); + _mesa_hash_table_insert_pre_hashed(ht, _mesa_hash_string(key), key, NULL); } entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); assert(entry1->key == str1); |