Searched defs: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
223 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...]
H A DTimSort.java133 private int stackSize = 0; // Number of pending runs on stack field in class:TimSort
255 assert ts.stackSize == 1;
417 this.runBase[stackSize] = runBase;
418 this.runLen[stackSize] = runLen;
419 stackSize++;
430 * so the invariants are guaranteed to hold for i < stackSize upon
434 while (stackSize > 1) {
435 int n = stackSize - 2;
453 while (stackSize > 1) {
454 int n = stackSize
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DThread.java203 private long stackSize; field in class:Thread
396 * @param stackSize the desired stack size for the new thread, or
399 private void init(ThreadGroup g, Runnable target, String name, long stackSize) { argument
416 this.stackSize = stackSize;
628 * {@code stackSize} parameter, if any, is highly platform dependent.</b>
631 * {@code stackSize} parameter may allow a thread to achieve greater
636 * the relationship between the value of the <tt>stackSize</tt> parameter
639 * {@code stackSize} parameter may have no effect whatsoever.</b>
641 * <p>The virtual machine is free to treat the {@code stackSize}
691 Thread(ThreadGroup group, Runnable target, String name, long stackSize) argument
747 nativeCreate(Thread t, long stackSize, boolean daemon) argument
[all...]

Completed in 19 milliseconds