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

/libcore/ojluni/src/main/java/java/util/
H A DComparableTimSort.java108 private int stackSize = 0; // Number of pending runs on stack field in class:ComparableTimSort
219 assert ts.stackSize == 1;
378 this.runBase[stackSize] = runBase;
379 this.runLen[stackSize] = runLen;
380 stackSize++;
391 * so the invariants are guaranteed to hold for i < stackSize upon
395 while (stackSize > 1) {
396 int n = stackSize - 2;
414 while (stackSize > 1) {
415 int n = stackSize
[all...]
H A DTimSort.java133 private int stackSize = 0; // Number of pending runs on stack field in class:TimSort
251 assert ts.stackSize == 1;
413 this.runBase[stackSize] = runBase;
414 this.runLen[stackSize] = runLen;
415 stackSize++;
426 * so the invariants are guaranteed to hold for i < stackSize upon
430 while (stackSize > 1) {
431 int n = stackSize - 2;
449 while (stackSize > 1) {
450 int n = stackSize
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DThread.java203 private long stackSize; field in class:Thread
394 * @param stackSize the desired stack size for the new thread, or
397 private void init(ThreadGroup g, Runnable target, String name, long stackSize) { argument
414 this.stackSize = stackSize;
626 * {@code stackSize} parameter, if any, is highly platform dependent.</b>
629 * {@code stackSize} parameter may allow a thread to achieve greater
634 * the relationship between the value of the <tt>stackSize</tt> parameter
637 * {@code stackSize} parameter may have no effect whatsoever.</b>
639 * <p>The virtual machine is free to treat the {@code stackSize}
689 Thread(ThreadGroup group, Runnable target, String name, long stackSize) argument
744 nativeCreate(Thread t, long stackSize, boolean daemon) argument
[all...]

Completed in 107 milliseconds