Searched refs:stackSize (Results 1 - 5 of 5) sorted by path

/libcore/libart/src/main/java/java/lang/
H A DThread.java133 volatile long stackSize; field in class:Thread
337 * @param stackSize
346 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { argument
350 create(group, runnable, threadName, stackSize);
378 this.stackSize = 0;
396 * @param stackSize Platform dependent stack size
402 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { argument
425 this.stackSize = stackSize;
1042 nativeCreate(this, stackSize, daemo
1045 nativeCreate(Thread t, long stackSize, boolean daemon) argument
[all...]
/libcore/libdvm/src/main/java/java/lang/
H A DThread.java133 volatile long stackSize; field in class:Thread
332 * @param stackSize
341 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { argument
345 create(group, runnable, threadName, stackSize);
373 this.stackSize = 0;
391 * @param stackSize Platform dependent stack size
397 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { argument
420 this.stackSize = stackSize;
1029 VMThread.create(this, stackSize);
[all...]
H A DVMThread.java27 native static void create(Thread t, long stackSize); argument
42 void start(long stackSize) { argument
43 VMThread.create(thread, stackSize);
/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...]

Completed in 264 milliseconds