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.c234 size_t bytesAllocated; member in struct:HeapSource
356 heapSource->bytesAllocated);
568 value = heapSource->bytesAllocated;
626 heapSource->bytesAllocated += aligned;
637 heapSource->bytesAllocated += aligned;
650 heapSource->bytesAllocated += aligned;
H A DHeapSource.c120 size_t bytesAllocated; member in struct:__anon49
297 * Functions to update heapSource->bytesAllocated when an object
308 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
310 heap->bytesAllocated += mspace_usable_size(heap->msp, ptr) +
318 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
328 if (delta < heap->bytesAllocated) {
329 heap->bytesAllocated -= delta;
331 heap->bytesAllocated = 0;
684 value = heap->bytesAllocated;
822 if (heap->bytesAllocated
[all...]

Completed in 132 milliseconds