Home
last modified time | relevance | path

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

/external/deqp/framework/delibs/depool/
DdeMemPool.c53 int bytesAllocated; member
190 initialPage->bytesAllocated += (int)sizeof(deMemPool); in createPoolInternal()
396 numAllocatedBytes += memPage->bytesAllocated; in deMemPool_getNumAllocatedBytes()
462 void* curPagePtr = (void*)((deUint8*)(curPage + 1) + curPage->bytesAllocated); in deMemPool_allocInternal()
466 if (numBytes + alignPadding > (size_t)(curPage->capacity - curPage->bytesAllocated)) in deMemPool_allocInternal()
479 DE_ASSERT(curPage->bytesAllocated == 0); in deMemPool_allocInternal()
488 curPage->bytesAllocated += (int)(numBytes + alignPadding); in deMemPool_allocInternal()