Home
last modified time | relevance | path

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

/dalvik/vm/compiler/
DUtility.cpp35 currentArena->bytesAllocated = 0; in dvmCompilerHeapInit()
48 if (size + currentArena->bytesAllocated <= currentArena->blockSize) { in dvmCompilerNew()
50 ptr = &currentArena->ptr[currentArena->bytesAllocated]; in dvmCompilerNew()
51 currentArena->bytesAllocated += size; in dvmCompilerNew()
76 newArena->bytesAllocated = 0; in dvmCompilerNew()
95 block->bytesAllocated = 0; in dvmCompilerArenaReset()
DCompilerUtility.h30 size_t bytesAllocated; member
/dalvik/vm/alloc/
DHeapSource.cpp73 size_t bytesAllocated; member
270 assert(heap->bytesAllocated < mspace_footprint(heap->msp)); in countAllocation()
272 heap->bytesAllocated += mspace_usable_size(ptr) + in countAllocation()
278 assert(heap->bytesAllocated < mspace_footprint(heap->msp)); in countAllocation()
285 if (delta < heap->bytesAllocated) { in countFree()
286 heap->bytesAllocated -= delta; in countFree()
288 heap->bytesAllocated = 0; in countFree()
767 value = heap->bytesAllocated; in dvmHeapSourceGetValue()
877 if (heap->bytesAllocated + n > hs->softLimit) { in dvmHeapSourceAlloc()
901 if (heap->bytesAllocated > heap->concurrentStartBytes) { in dvmHeapSourceAlloc()
[all …]
DCopying.cpp233 size_t bytesAllocated; member
344 heapSource->bytesAllocated); in allocateBlocks()
543 value = heapSource->bytesAllocated; in dvmHeapSourceGetValue()
601 heapSource->bytesAllocated += aligned; in dvmHeapSourceAlloc()
612 heapSource->bytesAllocated += aligned; in dvmHeapSourceAlloc()
625 heapSource->bytesAllocated += aligned; in dvmHeapSourceAlloc()
/dalvik/vm/compiler/codegen/x86/
DLowerHelper.cpp166 size_t bytesAllocated; member
183 currentAtomMem->bytesAllocated = 0; in atomNew()
192 if (size + currentAtomMem->bytesAllocated <= ATOMBLOCK_DEFAULT_SIZE) { in atomNew()
194 ptr = &currentAtomMem->ptr[currentAtomMem->bytesAllocated]; in atomNew()
207 newAtomMem->bytesAllocated = 0; in atomNew()
220 tmpMem->bytesAllocated = 0; in freeAtomMem()