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

/dalvik/vm/compiler/
H A DUtility.cpp112 int newLength = gList->numAllocated; local
113 if (newLength < 128) {
114 newLength <<= 1;
116 newLength += 128;
119 (intptr_t *) dvmCompilerNew(sizeof(intptr_t) * newLength, true);
121 gList->numAllocated = newLength;

Completed in 18 milliseconds