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

  /external/chromium_org/third_party/WebKit/public/platform/
WebGraphicsMemoryStats.h 42 size_t bytesAllocated;
51 , bytesAllocated(0)
  /dalvik/vm/compiler/
Utility.cpp 35 currentArena->bytesAllocated = 0;
48 if (size + currentArena->bytesAllocated <= currentArena->blockSize) {
50 ptr = &currentArena->ptr[currentArena->bytesAllocated];
51 currentArena->bytesAllocated += size;
76 newArena->bytesAllocated = 0;
95 block->bytesAllocated = 0;
CompilerUtility.h 30 size_t bytesAllocated;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
Canvas2DLayerManager.cpp 108 m_bytesAllocated += layer->bytesAllocated();
154 m_bytesAllocated -= layer->bytesAllocated();
Canvas2DLayerBridge.h 73 size_t bytesAllocated() const {return m_bytesAllocated;}
Canvas2DLayerBridge.cpp 135 void Canvas2DLayerBridge::storageAllocatedForRecordingChanged(size_t bytesAllocated)
137 intptr_t delta = (intptr_t)bytesAllocated - (intptr_t)m_bytesAllocated;
138 m_bytesAllocated = bytesAllocated;
Canvas2DLayerManagerTest.cpp 149 EXPECT_EQ((size_t)5, layer.bytesAllocated());
166 EXPECT_EQ((size_t)11, layer.bytesAllocated()); // flush drops the layer from manager's tracking list
  /dalvik/vm/alloc/
HeapSource.cpp 75 size_t bytesAllocated;
271 * Functions to update heapSource->bytesAllocated when an object
280 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
282 heap->bytesAllocated += mspace_usable_size(ptr) +
288 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
295 if (delta < heap->bytesAllocated) {
296 heap->bytesAllocated -= delta;
298 heap->bytesAllocated = 0;
814 value = heap->bytesAllocated;
924 if (heap->bytesAllocated + n > hs->softLimit)
    [all...]
Copying.cpp 233 size_t bytesAllocated;
344 heapSource->bytesAllocated);
543 value = heapSource->bytesAllocated;
601 heapSource->bytesAllocated += aligned;
612 heapSource->bytesAllocated += aligned;
625 heapSource->bytesAllocated += aligned;
    [all...]
  /external/chromium_org/cc/output/
delegating_renderer.cc 213 stats.bytesAllocated = bytes_allocated;
gl_renderer.cc 288 stats.bytesAllocated = bytes_allocated;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapHeap.h 191 size_t bytesAllocated() const {
  /external/skia/src/core/
SkBitmapHeap.h 191 size_t bytesAllocated() const {
  /external/skia/tests/
DeferredCanvasTest.cpp 614 size_t bytesAllocated = 0;
631 REPORTER_ASSERT(reporter, newBytesAllocated > bytesAllocated);
632 bytesAllocated = newBytesAllocated;
634 REPORTER_ASSERT(reporter, newBytesAllocated == bytesAllocated);
    [all...]
  /dalvik/vm/compiler/codegen/x86/
LowerHelper.cpp 166 size_t bytesAllocated;
183 currentAtomMem->bytesAllocated = 0;
192 if (size + currentAtomMem->bytesAllocated <= ATOMBLOCK_DEFAULT_SIZE) {
194 ptr = &currentAtomMem->ptr[currentAtomMem->bytesAllocated];
207 newAtomMem->bytesAllocated = 0;
220 tmpMem->bytesAllocated = 0;
    [all...]
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeWrite.cpp 203 return (NULL == fBitmapHeap) ? 0 : fBitmapHeap->bytesAllocated();
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 203 return (NULL == fBitmapHeap) ? 0 : fBitmapHeap->bytesAllocated();
    [all...]
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
ddmuilib.jar 
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 
  /external/chromium_org/content/common/gpu/client/
webgraphicscontext3d_command_buffer_impl.cc 665 stats->bytesAllocated,
    [all...]

Completed in 491 milliseconds