Home
last modified time | relevance | path

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

/dalvik/vm/compiler/codegen/x86/
DLowerHelper.cpp173 AtomMemBlock *currentAtomMem = NULL; variable
182 currentAtomMem = atomMemHead; in atomNew()
183 currentAtomMem->bytesAllocated = 0; in atomNew()
184 currentAtomMem->next = NULL; in atomNew()
192 if (size + currentAtomMem->bytesAllocated <= ATOMBLOCK_DEFAULT_SIZE) { in atomNew()
194 ptr = &currentAtomMem->ptr[currentAtomMem->bytesAllocated]; in atomNew()
197 if (currentAtomMem->next) { in atomNew()
198 currentAtomMem = currentAtomMem->next; in atomNew()
209 currentAtomMem->next = newAtomMem; in atomNew()
210 currentAtomMem = newAtomMem; in atomNew()
[all …]