Searched refs:holdIndex (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java68 int holdIndex; // The index of the curve segment field in class:FlatteningPathIterator
80 // at the holdIndex
172 * It is currently holding (hold.length - holdIndex) values.
175 if (holdIndex - want < 0) {
176 int have = hold.length - holdIndex;
179 System.arraycopy(hold, holdIndex,
180 newhold, holdIndex + GROW_SIZE,
183 holdIndex += GROW_SIZE;
200 if (holdIndex >= holdEnd) {
222 holdIndex
[all...]
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java59 int holdIndex; // The index of the curve segment field in class:Test7047069
71 // at the holdIndex
119 holdIndex = hold.length - 6;
121 hold[holdIndex + 0] = (float) (Math.random() * 100);
122 hold[holdIndex + 1] = (float) (Math.random() * 100);
123 hold[holdIndex + 2] = (float) (Math.random() * 100);
124 hold[holdIndex + 3] = (float) (Math.random() * 100);
125 hold[holdIndex + 4] = (float) (Math.random() * 100);
126 hold[holdIndex + 5] = (float) (Math.random() * 100);
134 * It is currently holding (hold.length - holdIndex) value
[all...]

Completed in 48 milliseconds