Lines Matching full:m_pool
44 deMemPool* getRawPool (void) { return m_pool; }
46 int getNumChildren (void) const { return deMemPool_getNumChildren(m_pool); }
48 deUintptr getNumAllocatedBytes (bool recurse) const { return deMemPool_getNumAllocatedBytes(m_pool, recurse ? DE_TRUE : DE_FALSE); }
49 deUintptr getCapacity (bool recurse) const { return deMemPool_getCapacity(m_pool, recurse ? DE_TRUE : DE_FALSE); }
58 deMemPool* m_pool;
69 m_pool = deMemPool_createRoot(util, flags);
70 if (!m_pool)
76 m_pool = deMemPool_create(parent->m_pool);
77 if (!m_pool)
83 deMemPool_destroy(m_pool);
90 void* ptr = deMemPool_alloc(m_pool, (int)numBytes);
100 void* ptr = deMemPool_alignedAlloc(m_pool, (int)numBytes, alignBytes);