Home
last modified time | relevance | path

Searched refs:deMemPool_alloc (Results 1 – 8 of 8) sorted by relevance

/external/deqp/framework/delibs/depool/
DdeMemPool.h51 #define DE_POOL_NEW(POOL, TYPE) ((TYPE*)deMemPool_alloc(POOL, sizeof(TYPE)))
72 void* deMemPool_alloc (deMemPool* pool, size_t numBytes);
DdePoolArray.c78 …void** newPageTable = (void**)deMemPool_alloc(arr->pool, (size_t)newPageTableCapacity * sizeof(v… in dePoolArray_reserve()
118 void* newPage = deMemPool_alloc(arr->pool, (size_t)pageAllocSize); in dePoolArray_reserve()
168 deMemPool_alloc(pool, 1); in dePoolArray_selfTest()
DdePoolStringBuilder.c62 char* blockStr = (char*)deMemPool_alloc(builder->pool, len + 1); in dePoolStringBuilder_appendString()
120 char* resultStr = (char*)deMemPool_alloc(pool, (size_t)builder->length + 1); in dePoolStringBuilder_dupToPool()
DdeMemPool.c499 void* deMemPool_alloc (deMemPool* pool, size_t numBytes) in deMemPool_alloc() function
538 void* newPtr = deMemPool_alloc(pool, numBytes); in deMemPool_memDup()
553 char* newStr = (char*)deMemPool_alloc(pool, len+1); in deMemPool_strDup()
569 char* newStr = (char*)deMemPool_alloc(pool, len + 1); in deMemPool_strnDup()
DdePoolHeap.c79 deMemPool_alloc(pool, 1); in dePoolHeap_selfTest()
DdePoolHash.h243 …slot = (TYPENAME##Slot*)deMemPool_alloc(hash->pool, sizeof(TYPENAME##Slot) * DE_HASH_ELEMENTS_PER_…
260 …TYPENAME##Slot** newSlotTable = (TYPENAME##Slot**)deMemPool_alloc(hash->pool, sizeof(TYPENAME##Slo…
DdePoolSet.h251 …slot = (TYPENAME##Slot*)deMemPool_alloc(set->pool, sizeof(TYPENAME##Slot) * DE_SET_ELEMENTS_PER_SL…
268 …TYPENAME##Slot** newSlotTable = (TYPENAME##Slot**)deMemPool_alloc(set->pool, sizeof(TYPENAME##Slot…
/external/deqp/framework/delibs/decpp/
DdeMemPool.hpp90 void* ptr = deMemPool_alloc(m_pool, (int)numBytes); in alloc()