Home
last modified time | relevance | path

Searched refs:id_alloc (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/mesa/main/
Dhash.c98 if (table->id_alloc) { in _mesa_DeleteHashTable()
99 util_idalloc_fini(table->id_alloc); in _mesa_DeleteHashTable()
100 free(table->id_alloc); in _mesa_DeleteHashTable()
112 table->id_alloc = MALLOC_STRUCT(util_idalloc); in _mesa_HashEnableNameReuse()
113 util_idalloc_init(table->id_alloc); in _mesa_HashEnableNameReuse()
114 util_idalloc_resize(table->id_alloc, 8); in _mesa_HashEnableNameReuse()
115 ASSERTED GLuint reserve0 = util_idalloc_alloc(table->id_alloc); in _mesa_HashEnableNameReuse()
225 if (!isGenName && table->id_alloc) in _mesa_HashInsertLocked()
226 util_idalloc_reserve(table->id_alloc, key); in _mesa_HashInsertLocked()
245 if (!isGenName && table->id_alloc) in _mesa_HashInsert()
[all …]
Dhash.h109 struct util_idalloc* id_alloc; member