Searched refs:_mesa_HashTable (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | hash.h | 38 extern struct _mesa_HashTable *_mesa_NewHashTable(void); 40 extern void _mesa_DeleteHashTable(struct _mesa_HashTable *table); 42 extern void *_mesa_HashLookup(struct _mesa_HashTable *table, GLuint key); 44 extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data); 46 extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key); 49 _mesa_HashDeleteAll(struct _mesa_HashTable *table, 54 _mesa_HashWalk(const struct _mesa_HashTable *table, 58 extern GLuint _mesa_HashFirstEntry(struct _mesa_HashTable *table); 60 extern GLuint _mesa_HashNextEntry(const struct _mesa_HashTable *table, GLuint key); 62 extern void _mesa_HashPrint(const struct _mesa_HashTable *table); [all …]
|
D | hash.c | 62 struct _mesa_HashTable { struct 77 struct _mesa_HashTable * argument 80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); in _mesa_NewHashTable() 99 _mesa_DeleteHashTable(struct _mesa_HashTable *table) in _mesa_DeleteHashTable() 127 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup_unlocked() 156 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup() 176 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert() 231 _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key) in _mesa_HashRemove() 283 _mesa_HashDeleteAll(struct _mesa_HashTable *table, in _mesa_HashDeleteAll() 319 _mesa_HashWalk(const struct _mesa_HashTable *table, in _mesa_HashWalk() [all …]
|
D | mtypes.h | 71 struct _mesa_HashTable; 1631 struct _mesa_HashTable *Objects; 1835 struct _mesa_HashTable *Objects; 2504 struct _mesa_HashTable *QueryObjects; 2545 struct _mesa_HashTable *DisplayList; /**< Display lists hash table */ 2546 struct _mesa_HashTable *TexObjects; /**< Texture objects hash table */ 2572 struct _mesa_HashTable *Programs; /**< All vertex/fragment programs */ 2579 struct _mesa_HashTable *ATIShaders; 2582 struct _mesa_HashTable *BufferObjects; 2585 struct _mesa_HashTable *ShaderObjects; [all …]
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_screen.h | 65 struct _mesa_HashTable *named_regions;
|