Home
last modified time | relevance | path

Searched refs:GROW_SIZE (Results 1 – 25 of 135) sorted by relevance

123456

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java40 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
140 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
143 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
150 holdIndex += GROW_SIZE; in ensureHoldCapacity()
151 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java40 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
140 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
143 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
150 holdIndex += GROW_SIZE; in ensureHoldCapacity()
151 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java40 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
140 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
143 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
150 holdIndex += GROW_SIZE; in ensureHoldCapacity()
151 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java40 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
140 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
143 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
150 holdIndex += GROW_SIZE; in ensureHoldCapacity()
151 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java40 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
140 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
143 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
150 holdIndex += GROW_SIZE; in ensureHoldCapacity()
151 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/7047069/
H A DTest7047069.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
139 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
142 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
149 holdIndex += GROW_SIZE; in ensureHoldCapacity()
150 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/7047069/
H A DTest7047069.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
139 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
142 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
149 holdIndex += GROW_SIZE; in ensureHoldCapacity()
150 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java44 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
145 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
148 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
155 holdIndex += GROW_SIZE; in ensureHoldCapacity()
156 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java44 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
145 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
148 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
155 holdIndex += GROW_SIZE; in ensureHoldCapacity()
156 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/compiler/c2/
H A DTest7047069.java44 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in Test7047069
145 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
148 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
155 holdIndex += GROW_SIZE; in ensureHoldCapacity()
156 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/
H A DEventTable.java31 static final int GROW_SIZE = 4; field in EventTable
51 if (types == null) types = new int [GROW_SIZE]; in hook()
52 if (listeners == null) listeners = new Listener [GROW_SIZE]; in hook()
60 int [] newTypes = new int [length + GROW_SIZE]; in hook()
63 Listener [] newListeners = new Listener [length + GROW_SIZE]; in hook()
H A DSynchronizer.java43 static final int GROW_SIZE = 4; field in Synchronizer
90 int nextSize = messageCount + Math.max(numToAdd, GROW_SIZE); in addFirst()
111 if (messages == null) messages = new RunnableLock [GROW_SIZE]; in addLast()
113 RunnableLock[] newMessages = new RunnableLock [messageCount + GROW_SIZE]; in addLast()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/widgets/
H A DEventTable.java31 static final int GROW_SIZE = 4; field in EventTable
51 if (types == null) types = new int [GROW_SIZE]; in hook()
52 if (listeners == null) listeners = new Listener [GROW_SIZE]; in hook()
60 int [] newTypes = new int [length + GROW_SIZE]; in hook()
63 Listener [] newListeners = new Listener [length + GROW_SIZE]; in hook()
H A DSynchronizer.java43 static final int GROW_SIZE = 4; field in Synchronizer
90 int nextSize = messageCount + Math.max(numToAdd, GROW_SIZE); in addFirst()
111 if (messages == null) messages = new RunnableLock [GROW_SIZE]; in addLast()
113 RunnableLock[] newMessages = new RunnableLock [messageCount + GROW_SIZE]; in addLast()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java39 static final int GROW_SIZE = 24; // Multiple of cubic & quad curve size field in FlatteningPathIterator
177 int newsize = hold.length + GROW_SIZE; in ensureHoldCapacity()
180 newhold, holdIndex + GROW_SIZE, in ensureHoldCapacity()
183 holdIndex += GROW_SIZE; in ensureHoldCapacity()
184 holdEnd += GROW_SIZE; in ensureHoldCapacity()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.tools/src/org/eclipse/core/tools/nls/
H A DIntegerMap.java19 private static final int GROW_SIZE = 10; field in IntegerMap
63 int[] tempKeys = new int[size + GROW_SIZE]; in grow()
66 int[] tempValues = new int[size + GROW_SIZE]; in grow()

123456