Searched refs:deMemPool_alloc (Results 1 – 8 of 8) sorted by relevance
/external/deqp/framework/delibs/depool/ |
D | deMemPool.h | 51 #define DE_POOL_NEW(POOL, TYPE) ((TYPE*)deMemPool_alloc(POOL, sizeof(TYPE))) 72 void* deMemPool_alloc (deMemPool* pool, size_t numBytes);
|
D | dePoolArray.c | 78 …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()
|
D | dePoolStringBuilder.c | 62 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()
|
D | deMemPool.c | 499 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()
|
D | dePoolHeap.c | 79 deMemPool_alloc(pool, 1); in dePoolHeap_selfTest()
|
D | dePoolHash.h | 243 …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…
|
D | dePoolSet.h | 251 …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/ |
D | deMemPool.hpp | 90 void* ptr = deMemPool_alloc(m_pool, (int)numBytes); in alloc()
|