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

/dalvik/vm/compiler/
H A DCompilerUtility.h30 size_t bytesAllocated; member in struct:ArenaMemBlock
/dalvik/vm/alloc/
H A DCopying.cpp233 size_t bytesAllocated; member in struct:HeapSource
344 heapSource->bytesAllocated);
543 value = heapSource->bytesAllocated;
601 heapSource->bytesAllocated += aligned;
612 heapSource->bytesAllocated += aligned;
625 heapSource->bytesAllocated += aligned;
H A DHeapSource.cpp80 size_t bytesAllocated; member in struct:Heap
250 * Functions to update heapSource->bytesAllocated when an object
259 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
261 heap->bytesAllocated += mspace_usable_size(heap->msp, ptr) +
267 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
274 if (delta < heap->bytesAllocated) {
275 heap->bytesAllocated -= delta;
277 heap->bytesAllocated = 0;
686 value = heap->bytesAllocated;
796 if (heap->bytesAllocated
[all...]

Completed in 57 milliseconds