Home
last modified time | relevance | path

Searched refs:_mesa_HashTable (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/main/
Dhash.h98 struct _mesa_HashTable { struct
107 extern struct _mesa_HashTable *_mesa_NewHashTable(void); argument
109 extern void _mesa_DeleteHashTable(struct _mesa_HashTable *table);
111 extern void *_mesa_HashLookup(struct _mesa_HashTable *table, GLuint key);
113 extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data);
115 extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key);
127 _mesa_HashLockMutex(struct _mesa_HashTable *table) in _mesa_HashLockMutex()
140 _mesa_HashUnlockMutex(struct _mesa_HashTable *table) in _mesa_HashUnlockMutex()
146 extern void *_mesa_HashLookupLocked(struct _mesa_HashTable *table, GLuint key);
148 extern void _mesa_HashInsertLocked(struct _mesa_HashTable *table,
[all …]
Dhash.c47 struct _mesa_HashTable *
50 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); in _mesa_NewHashTable()
86 _mesa_DeleteHashTable(struct _mesa_HashTable *table) in _mesa_DeleteHashTable()
107 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup_unlocked()
136 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup()
158 _mesa_HashLookupLocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookupLocked()
165 _mesa_HashInsert_unlocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert_unlocked()
201 _mesa_HashInsertLocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsertLocked()
216 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert()
234 _mesa_HashRemove_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemove_unlocked()
[all …]
Dmtypes.h88 struct _mesa_HashTable;
1609 struct _mesa_HashTable *Objects;
1879 struct _mesa_HashTable *Objects;
1995 struct _mesa_HashTable *Monitors;
2004 struct _mesa_HashTable *Objects; /**< The table of all performance query objects */
3110 struct _mesa_HashTable *Objects;
3182 struct _mesa_HashTable *QueryObjects;
3229 struct _mesa_HashTable *DisplayList; /**< Display lists hash table */
3230 struct _mesa_HashTable *BitmapAtlas; /**< For optimized glBitmap text */
3231 struct _mesa_HashTable *TexObjects; /**< Texture objects hash table */
[all …]