Searched defs:bytesAllocated (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCanvas2DLayerBridge.h84 size_t bytesAllocated() const { return m_bytesAllocated; } function in class:blink::Canvas2DLayerBridge
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;
/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/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/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);

Completed in 147 milliseconds