HomeSort by relevance Sort by last modified time
    Searched refs:_mesa_HashTable (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/mesa/main/
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...]
hash.c 62 struct _mesa_HashTable {
77 struct _mesa_HashTable *
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable);
99 _mesa_DeleteHashTable(struct _mesa_HashTable *table)
127 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key)
156 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key)
176 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data)
231 _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key)
283 _mesa_HashDeleteAll(struct _mesa_HashTable *table
    [all...]
mtypes.h 71 struct _mesa_HashTable;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_screen.h 65 struct _mesa_HashTable *named_regions;

Completed in 1886 milliseconds