Searched defs:CRHashIdPool (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_hash.h18 typedef struct CRHashIdPool CRHashIdPool; typedef in typeref:struct:CRHashIdPool
28 DECLEXPORT(CRHashIdPool *) crAllocHashIdPool( void );
29 DECLEXPORT(CRHashIdPool *) crAllocHashIdPoolEx( GLuint min, GLuint max );
30 DECLEXPORT(void) crFreeHashIdPool( CRHashIdPool *pool );
31 DECLEXPORT(GLboolean) crHashIdPoolIsIdFree( const CRHashIdPool *pool, GLuint id );
32 DECLEXPORT(GLuint) crHashIdPoolAllocBlock( CRHashIdPool *pool, GLuint count );
33 DECLEXPORT(void) crHashIdPoolFreeBlock( CRHashIdPool *pool, GLuint first, GLuint count );
35 DECLEXPORT(GLboolean) crHashIdPoolAllocId( CRHashIdPool *pool, GLuint id );
36 DECLEXPORT(void) crHashIdWalkKeys( CRHashIdPool *poo
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dhash.c26 struct CRHashIdPool { struct
41 CRHashIdPool *idPool;
48 CRHashIdPool *crAllocHashIdPoolEx( GLuint min, GLuint max )
50 CRHashIdPool *pool;
57 pool = (CRHashIdPool *) crCalloc(sizeof(CRHashIdPool));
68 CRHashIdPool *crAllocHashIdPool( void )
73 void crFreeHashIdPool( CRHashIdPool *pool )
85 static void crHashIdPoolDbgCheckConsistency(CRHashIdPool *pool)
110 static void crHashIdPoolDbgCheckUsed( const CRHashIdPool *poo
[all...]

Completed in 49 milliseconds