Home
last modified time | relevance | path

Searched refs:bytesAllocated (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/compiler/
DUtility.c34 currentArena->bytesAllocated = 0; in dvmCompilerHeapInit()
47 if (size + currentArena->bytesAllocated <= ARENA_DEFAULT_SIZE) { in dvmCompilerNew()
49 ptr = &currentArena->ptr[currentArena->bytesAllocated]; in dvmCompilerNew()
50 currentArena->bytesAllocated += size; in dvmCompilerNew()
77 newArena->bytesAllocated = 0; in dvmCompilerNew()
94 block->bytesAllocated = 0; in dvmCompilerArenaReset()
DCompilerUtility.h26 size_t bytesAllocated; member
/dalvik/vm/alloc/
DHeapSource.c117 size_t bytesAllocated; member
246 assert(heap->bytesAllocated < mspace_footprint(heap->msp)); in countAllocation()
248 heap->bytesAllocated += mspace_usable_size(heap->msp, ptr) + in countAllocation()
255 assert(heap->bytesAllocated < mspace_footprint(heap->msp)); in countAllocation()
265 if (delta < heap->bytesAllocated) { in countFree()
266 heap->bytesAllocated -= delta; in countFree()
268 heap->bytesAllocated = 0; in countFree()
578 value = heap->bytesAllocated; in dvmHeapSourceGetValue()
662 if (heap->bytesAllocated + n <= hs->softLimit) { in dvmHeapSourceAlloc()
968 ret += hs->heaps[0].bytesAllocated; in getSoftFootprint()
[all …]