Searched refs:serials_hash (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c57 static struct util_hash_table *serials_hash; variable in typeref:struct:util_hash_table *
98 if (!serials_hash)
99 serials_hash = util_hash_table_create(hash_ptr, compare_ptr);
101 serial = (unsigned) (uintptr_t) util_hash_table_get(serials_hash, p);
112 util_hash_table_set(serials_hash, p, (void *) (uintptr_t) serial);
130 util_hash_table_remove(serials_hash, p);
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_debug_refcnt.c61 static struct hash_table *serials_hash; variable in typeref:struct:hash_table *
83 if (!serials_hash)
84 serials_hash = util_hash_table_create_ptr_keys();
86 serial = (unsigned) (uintptr_t) util_hash_table_get(serials_hash, p);
97 _mesa_hash_table_insert(serials_hash, p, (void *) (uintptr_t) serial);
115 _mesa_hash_table_remove_key(serials_hash, p);

Completed in 3 milliseconds