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

/dalvik/vm/native/
H A Djava_lang_VMThread.c34 s8 stackSize = GET_ARG_LONG(args, 1); local
36 dvmCreateInterpThread(threadObj, (int) stackSize);
/dalvik/libcore/luni/src/main/java/java/util/
H A DComparableTimSort.java92 private int stackSize = 0; // Number of pending runs on stack field in class:ComparableTimSort
188 if (DEBUG) assert ts.stackSize == 1;
348 this.runBase[stackSize] = runBase;
349 this.runLen[stackSize] = runLen;
350 stackSize++;
361 * so the invariants are guaranteed to hold for i < stackSize upon
365 while (stackSize > 1) {
366 int n = stackSize - 2;
384 while (stackSize > 1) {
385 int n = stackSize
[all...]
H A DTimSort.java117 private int stackSize = 0; // Number of pending runs on stack field in class:TimSort
220 if (DEBUG) assert ts.stackSize == 1;
382 this.runBase[stackSize] = runBase;
383 this.runLen[stackSize] = runLen;
384 stackSize++;
395 * so the invariants are guaranteed to hold for i < stackSize upon
399 while (stackSize > 1) {
400 int n = stackSize - 2;
418 while (stackSize > 1) {
419 int n = stackSize
[all...]
/dalvik/vm/
H A DException.c1024 int i, stackSize; local
1026 stackSize = stackData->length / 2;
1028 return dvmGetStackTraceRaw(intVals, stackSize);
1167 int stackSize; local
1187 stackSize = stackData->length / 2;
1190 dvmLogRawStackTrace(intVals, stackSize);
H A DGlobals.h74 unsigned int stackSize; member in struct:DvmGlobals
H A DThread.c279 thread = allocThread(gDvm.stackSize);
1183 int stackSize; local
1196 stackSize = gDvm.stackSize;
1198 stackSize = kMinStackSize;
1200 stackSize = kMaxStackSize;
1202 stackSize = reqStackSize;
1215 newThread = allocThread(stackSize);
1725 self = allocThread(gDvm.stackSize);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThread.java148 volatile long stackSize; field in class:Thread
377 * @param stackSize
393 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { argument
397 create(group, runnable, threadName, stackSize);
424 this.stackSize = 0;
442 * @param stackSize Platform dependent stack size
452 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { argument
507 this.stackSize = stackSize;
1291 VMThread.create(this, stackSize);
[all...]
/dalvik/vm/interp/
H A DStack.c33 bool dvmInitInterpStack(Thread* thread, int stackSize) argument
/dalvik/libcore/xml/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp368 int stackSize = 10; local
369 result->stringStack.capacity = stackSize;
372 = (jstring*) malloc(stackSize * sizeof(jstring));

Completed in 236 milliseconds