Home
last modified time | relevance | path

Searched refs:bytesAllocated (Results 1 – 3 of 3) 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()
/external/swiftshader/third_party/marl/src/
Dmarl_test.h41 ASSERT_EQ(stats.bytesAllocated(), 0U); in TearDown()
73 ASSERT_EQ(stats.bytesAllocated(), 0U); in TearDown()
/external/swiftshader/third_party/marl/include/marl/
Dmemory.h254 inline size_t bytesAllocated() const;
284 size_t TrackedAllocator::Stats::bytesAllocated() const { in bytesAllocated() function