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

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMethodType.java85 public int stackSize() { method in class:MethodType
88 n += argTypes[i].stackSize();
H A DType.java365 public int stackSize() { method in class:Type
383 throw new CompilerError("stackSize " + toString());
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java103 private int stackSize = 0; // Number of pending runs on stack field in class:ComparableTimSort
192 assert ts.stackSize == 1;
352 this.runBase[stackSize] = runBase;
353 this.runLen[stackSize] = runLen;
354 stackSize++;
365 * so the invariants are guaranteed to hold for i < stackSize upon
369 while (stackSize > 1) {
370 int n = stackSize - 2;
388 while (stackSize > 1) {
389 int n = stackSize
[all...]
H A DTimSort.java128 private int stackSize = 0; // Number of pending runs on stack field in class:TimSort
224 assert ts.stackSize == 1;
386 this.runBase[stackSize] = runBase;
387 this.runLen[stackSize] = runLen;
388 stackSize++;
399 * so the invariants are guaranteed to hold for i < stackSize upon
403 while (stackSize > 1) {
404 int n = stackSize - 2;
422 while (stackSize > 1) {
423 int n = stackSize
[all...]
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java65 int stackSize(int currentSize); method in interface:Inject.TrackerInjector
71 public int stackSize(int currentSize) { method in class:Inject.SimpleInjector
90 public int stackSize(int currentSize) { method in class:Inject.ObjectInjector
112 public int stackSize(int currentSize) { method in class:Inject.IndexedInjector
405 defaultInjector.stackSize(maxStack)); // big enough for injected code
/openjdk7/jdk/src/share/classes/sun/launcher/
H A DLauncherHelper.java109 * stackSize: in bytes, as set by the launcher, a zero-value indicates
114 long initialHeapSize, long maxHeapSize, long stackSize,
125 stackSize, isServer);
135 stackSize, isServer);
147 long stackSize, boolean isServer) {
150 if (stackSize != 0L) {
152 SizePrefix.scaleValue(stackSize));
113 showSettings(boolean printToStderr, String optionFlag, long initialHeapSize, long maxHeapSize, long stackSize, boolean isServer) argument
145 printVmSettings(PrintStream ostream, long initialHeapSize, long maxHeapSize, long stackSize, boolean isServer) argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java195 private long stackSize; field in class:Thread
349 * @param stackSize the desired stack size for the new thread, or
353 long stackSize) {
406 this.stackSize = stackSize;
589 * {@code stackSize} parameter, if any, is highly platform dependent.</b>
592 * {@code stackSize} parameter may allow a thread to achieve greater
597 * the relationship between the value of the <tt>stackSize</tt> parameter
600 * {@code stackSize} parameter may have no effect whatsoever.</b>
602 * <p>The virtual machine is free to treat the {@code stackSize}
352 init(ThreadGroup g, Runnable target, String name, long stackSize) argument
652 Thread(ThreadGroup group, Runnable target, String name, long stackSize) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java409 * plus <tt>stackSize</tt>.
411 private int stackSize; field in class:MethodWriter
418 * block plus <tt>stackSize</tt>.
674 int size = stackSize + Frame.SIZE[opcode];
678 stackSize = size;
697 int size = stackSize + 1;
701 stackSize = size;
722 // save 'stackSize' here for future use
724 currentBlock.inputStackTop = stackSize;
727 int size = stackSize
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp797 // Note: The stackSize field is only present starting in 1.4.
826 // The stackSize field is only present starting in 1.4, so don't go fatal.
911 jlong java_lang_Thread::stackSize(oop java_thread) { function in class:java_lang_Thread
912 // The stackSize field is only present starting in 1.4

Completed in 77 milliseconds