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

/dalvik/vm/compiler/
H A DUtility.cpp20 static ArenaMemBlock *arenaHead, *currentArena; variable
34 currentArena = arenaHead;
35 currentArena->bytesAllocated = 0;
36 currentArena->next = NULL;
48 if (size + currentArena->bytesAllocated <= currentArena->blockSize) {
50 ptr = &currentArena->ptr[currentArena->bytesAllocated];
51 currentArena->bytesAllocated += size;
61 if (currentArena
[all...]

Completed in 79 milliseconds