Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/util/
DComparableTimSort.java92 private int stackSize = 0; // Number of pending runs on stack field in ComparableTimSort
188 if (DEBUG) assert ts.stackSize == 1; in sort()
348 this.runBase[stackSize] = runBase;
349 this.runLen[stackSize] = runLen;
350 stackSize++;
365 while (stackSize > 1) {
366 int n = stackSize - 2;
384 while (stackSize > 1) { in mergeForceCollapse()
385 int n = stackSize - 2; in mergeForceCollapse()
401 if (DEBUG) assert stackSize >= 2; in mergeAt() local
[all …]
DTimSort.java117 private int stackSize = 0; // Number of pending runs on stack field in TimSort
220 if (DEBUG) assert ts.stackSize == 1; in sort()
382 this.runBase[stackSize] = runBase;
383 this.runLen[stackSize] = runLen;
384 stackSize++;
399 while (stackSize > 1) {
400 int n = stackSize - 2;
418 while (stackSize > 1) { in mergeForceCollapse()
419 int n = stackSize - 2; in mergeForceCollapse()
434 if (DEBUG) assert stackSize >= 2; in mergeAt() local
[all …]
/libcore/libart/src/main/java/java/lang/
DThread.java133 volatile long stackSize; field in Thread
346 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { in Thread() argument
350 create(group, runnable, threadName, stackSize); in Thread()
378 this.stackSize = 0; in Thread()
402 private void create(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { in create() argument
425 this.stackSize = stackSize; in create()
1063 nativeCreate(this, stackSize, daemon); in start()
1066 private native static void nativeCreate(Thread t, long stackSize, boolean daemon); in nativeCreate() argument