summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/u_hash_table.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-10-17 11:45:04 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-10-17 11:45:04 +0100
commit5d42e3988de8b3e1b37d8c21d18db240bc8b4096 (patch)
tree0b7536f3c43232cebf9a68cdb334aa2a18ed2e30 /src/gallium/auxiliary/util/u_hash_table.h
parent60a39b6799c72430851d92f93758e2f25487a0f4 (diff)
downloadexternal_mesa3d-5d42e3988de8b3e1b37d8c21d18db240bc8b4096.zip
external_mesa3d-5d42e3988de8b3e1b37d8c21d18db240bc8b4096.tar.gz
external_mesa3d-5d42e3988de8b3e1b37d8c21d18db240bc8b4096.tar.bz2
util: Rename from u_* to util_* while we're at it.
To be consistent with the rest.
Diffstat (limited to 'src/gallium/auxiliary/util/u_hash_table.h')
-rw-r--r--src/gallium/auxiliary/util/u_hash_table.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/gallium/auxiliary/util/u_hash_table.h b/src/gallium/auxiliary/util/u_hash_table.h
index feb4736..258a31a 100644
--- a/src/gallium/auxiliary/util/u_hash_table.h
+++ b/src/gallium/auxiliary/util/u_hash_table.h
@@ -46,7 +46,7 @@ extern "C" {
/**
* Generic purpose hash table.
*/
-struct u_hash_table;
+struct util_hash_table;
/**
@@ -55,38 +55,38 @@ struct u_hash_table;
* @param hash hash function
* @param compare should return 0 for two equal keys.
*/
-struct u_hash_table *
-u_hash_table_create(unsigned (*hash)(void *key),
- int (*compare)(void *key1, void *key2));
+struct util_hash_table *
+util_hash_table_create(unsigned (*hash)(void *key),
+ int (*compare)(void *key1, void *key2));
enum pipe_error
-u_hash_table_set(struct u_hash_table *ht,
- void *key,
- void *value);
+util_hash_table_set(struct util_hash_table *ht,
+ void *key,
+ void *value);
void *
-u_hash_table_get(struct u_hash_table *ht,
- void *key);
+util_hash_table_get(struct util_hash_table *ht,
+ void *key);
void
-u_hash_table_remove(struct u_hash_table *ht,
- void *key);
+util_hash_table_remove(struct util_hash_table *ht,
+ void *key);
void
-u_hash_table_clear(struct u_hash_table *ht);
+util_hash_table_clear(struct util_hash_table *ht);
enum pipe_error
-u_hash_table_foreach(struct u_hash_table *ht,
- enum pipe_error (*callback)
+util_hash_table_foreach(struct util_hash_table *ht,
+ enum pipe_error (*callback)
(void *key, void *value, void *data),
- void *data);
+ void *data);
void
-u_hash_table_destroy(struct u_hash_table *ht);
+util_hash_table_destroy(struct util_hash_table *ht);
#ifdef __cplusplus