HomeSort by relevance Sort by last modified time
    Searched defs:bytesAllocated (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.h 84 size_t bytesAllocated() const { return m_bytesAllocated; }
  /external/chromium_org/third_party/skia/src/core/
SkBitmapHeap.h 191 size_t bytesAllocated() const {
  /external/chromium_org/third_party/skia/tests/
DeferredCanvasTest.cpp 601 size_t bytesAllocated = 0;
618 REPORTER_ASSERT(reporter, newBytesAllocated > bytesAllocated);
619 bytesAllocated = newBytesAllocated;
621 REPORTER_ASSERT(reporter, newBytesAllocated == bytesAllocated);
    [all...]
  /external/deqp/framework/delibs/depool/
deMemPool.c 53 int bytesAllocated;
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;

Completed in 558 milliseconds