Lines Matching defs:pool
21 * \brief Memory pool array class.
38 * \brief Create a new pool array.
39 * \param pool Pool to allocate memory from.
43 dePoolArray* dePoolArray_create (deMemPool* pool, int elementSize)
46 dePoolArray* arr = DE_POOL_NEW(pool, dePoolArray);
52 arr->pool = pool;
78 void** newPageTable = (void**)deMemPool_alloc(arr->pool, (size_t)newPageTableCapacity * sizeof(void*));
115 /* Allocate the rest of the needed pages from the pool. */
118 void* newPage = deMemPool_alloc(arr->pool, (size_t)pageAllocSize);
159 deMemPool* pool = deMemPool_createRoot(DE_NULL, 0);
160 dePoolIntArray* arr = dePoolIntArray_create(pool);
161 dePoolInt16Array* arr16 = dePoolInt16Array_create(pool);
168 deMemPool_alloc(pool, 1);
215 arr = dePoolIntArray_create(pool);
230 deMemPool_destroy(pool);