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

/external/deqp/framework/delibs/depool/
H A DdeMemPool.c53 int bytesAllocated; member in struct:MemPage_s
190 initialPage->bytesAllocated += (int)sizeof(deMemPool);
396 numAllocatedBytes += memPage->bytesAllocated;
462 void* curPagePtr = (void*)((deUint8*)(curPage + 1) + curPage->bytesAllocated);
466 if (numBytes + alignPadding > curPage->capacity - curPage->bytesAllocated)
479 DE_ASSERT(curPage->bytesAllocated == 0);
488 curPage->bytesAllocated += numBytes+alignPadding;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCanvas2DLayerManagerTest.cpp102 m_freeableBytes = bytesAllocated();
180 EXPECT_EQ((size_t)5, layer->bytesAllocated());
195 EXPECT_EQ((size_t)10, layer->bytesAllocated());
199 EXPECT_EQ((size_t)0, layer->bytesAllocated());
233 EXPECT_EQ((size_t)5, layer->bytesAllocated());
H A DCanvas2DLayerBridge.cpp182 freeMemoryIfPossible(bytesAllocated());
188 return !m_destructionInProgress && (hasReleasedMailbox() || bytesAllocated());
229 void Canvas2DLayerBridge::storageAllocatedForRecordingChanged(size_t bytesAllocated) argument
232 intptr_t delta = (intptr_t)bytesAllocated - (intptr_t)m_bytesAllocated;
233 m_bytesAllocated = bytesAllocated;
H A DCanvas2DLayerBridge.h84 size_t bytesAllocated() const { return m_bytesAllocated; } function in class:blink::Canvas2DLayerBridge
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapHeap.h191 size_t bytesAllocated() const { function in class:SkBitmapHeap
/external/skia/src/core/
H A DSkBitmapHeap.h191 size_t bytesAllocated() const { function in class:SkBitmapHeap
/external/chromium_org/third_party/skia/tests/
H A DDeferredCanvasTest.cpp601 size_t bytesAllocated = 0; local
618 REPORTER_ASSERT(reporter, newBytesAllocated > bytesAllocated);
619 bytesAllocated = newBytesAllocated;
621 REPORTER_ASSERT(reporter, newBytesAllocated == bytesAllocated);
/external/skia/tests/
H A DDeferredCanvasTest.cpp616 size_t bytesAllocated = 0; local
632 REPORTER_ASSERT(reporter, newBytesAllocated > bytesAllocated);
633 bytesAllocated = newBytesAllocated;
635 REPORTER_ASSERT(reporter, newBytesAllocated == bytesAllocated);
/external/chromium_org/third_party/skia/src/pipe/
H A DSkGPipeWrite.cpp231 return (NULL == fBitmapHeap) ? 0 : fBitmapHeap->bytesAllocated();
/external/skia/src/pipe/
H A DSkGPipeWrite.cpp228 return (NULL == fBitmapHeap) ? 0 : fBitmapHeap->bytesAllocated();

Completed in 2585 milliseconds