OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deMemPool_alloc
(Results
1 - 8
of
8
) sorted by null
/external/deqp/framework/delibs/depool/
deMemPool.h
51
#define DE_POOL_NEW(POOL, TYPE) ((TYPE*)
deMemPool_alloc
(POOL, sizeof(TYPE)))
72
void*
deMemPool_alloc
(deMemPool* pool, size_t numBytes);
dePoolArray.c
78
void** newPageTable = (void**)
deMemPool_alloc
(arr->pool, (size_t)newPageTableCapacity * sizeof(void*));
118
void* newPage =
deMemPool_alloc
(arr->pool, (size_t)pageAllocSize);
168
deMemPool_alloc
(pool, 1);
dePoolStringBuilder.c
62
char* blockStr = (char*)
deMemPool_alloc
(builder->pool, len + 1);
120
char* resultStr = (char*)
deMemPool_alloc
(pool, (size_t)builder->length + 1);
deMemPool.c
499
void*
deMemPool_alloc
(deMemPool* pool, size_t numBytes)
538
void* newPtr =
deMemPool_alloc
(pool, numBytes);
553
char* newStr = (char*)
deMemPool_alloc
(pool, len+1);
569
char* newStr = (char*)
deMemPool_alloc
(pool, len + 1);
dePoolHeap.c
79
deMemPool_alloc
(pool, 1);
dePoolHash.h
243
slot = (TYPENAME##Slot*)
deMemPool_alloc
(hash->pool, sizeof(TYPENAME##Slot) * DE_HASH_ELEMENTS_PER_SLOT); \
260
TYPENAME##Slot** newSlotTable = (TYPENAME##Slot**)
deMemPool_alloc
(hash->pool, sizeof(TYPENAME##Slot*) * (size_t)newSlotTableSize); \
dePoolSet.h
251
slot = (TYPENAME##Slot*)
deMemPool_alloc
(set->pool, sizeof(TYPENAME##Slot) * DE_SET_ELEMENTS_PER_SLOT); \
268
TYPENAME##Slot** newSlotTable = (TYPENAME##Slot**)
deMemPool_alloc
(set->pool, sizeof(TYPENAME##Slot*) * (size_t)newSlotTableSize); \
/external/deqp/framework/delibs/decpp/
deMemPool.hpp
90
void* ptr =
deMemPool_alloc
(m_pool, (int)numBytes);
Completed in 273 milliseconds