Searched refs:hold (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java48 double hold[] = new double[14]; // The cache of interpolated coords field in class:FlatteningPathIterator
171 * Ensures that the hold array can hold up to (want) more values.
172 * It is currently holding (hold.length - holdIndex) values.
176 int have = hold.length - holdIndex;
177 int newsize = hold.length + GROW_SIZE;
179 System.arraycopy(hold, holdIndex,
182 hold = newhold;
208 holdType = src.currentSegment(hold);
216 curx = hold[
[all...]
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java46 float hold[] = new float[14]; // The cache of interpolated coords field in class:Test7047069
119 holdIndex = hold.length - 6;
120 holdEnd = hold.length - 2;
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);
133 * Ensures that the hold arra
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c108 unsigned long hold; /* local strm->hold */ local
135 hold = state->hold;
146 hold += (unsigned long)(PUP(in)) << bits;
148 hold += (unsigned long)(PUP(in)) << bits;
151 this = lcode[hold & lmask];
154 hold >>= op;
168 hold += (unsigned long)(PUP(in)) << bits;
171 len += (unsigned)hold
[all...]
H A Dinflate.c145 state->hold = 0;
163 state->hold += value << state->bits;
433 hold = state->hold; \
444 state->hold = hold; \
451 hold = 0; \
461 hold += (unsigned long)(*next++) << bits; \
475 ((unsigned)hold & ((1U << (n)) - 1))
480 hold >>
586 unsigned long hold; /* bit buffer */ local
[all...]
H A Dinflate.h118 unsigned long hold; /* input bit accumulator */ member in struct:inflate_state
H A Dinfback.c149 hold = state->hold; \
160 state->hold = hold; \
167 hold = 0; \
191 hold += (unsigned long)(*next++) << bits; \
206 ((unsigned)hold & ((1U << (n)) - 1))
211 hold >>= (n); \
218 hold >>= bits & 7; \
276 unsigned long hold; /* bi local
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DdefaultStream.hpp89 intx hold(intx writer_id);
H A Dostream.cpp730 intx defaultStream::hold(intx writer_id) { function in class:defaultStream
800 intx holder = hold(thread_id);
830 return defaultStream::instance->hold(thread_id);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftEnvelopeGenerator.java54 private final double[][] hold = new double[max_count][1]; field in class:SoftEnvelopeGenerator
71 hold[i][0] = 0;
101 if (name.equals("hold"))
102 return hold[instance];
183 this.hold[i][0] / 1200.0) / control_time);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s67 ! hold input data. o-registers %o0 to %o7 hold output data. l-registers
68 ! %l0 to %l7 hold local data. g-registers %g0 to %g7 hold global data.
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DTargetVM.java244 eventController().hold();
338 synchronized void hold() { method in class:TargetVM.EventController
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DMapCheck.java437 Object hold = s2.get(key[size-1]);
450 s2.put(key[size-1], hold);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp3254 long hold = paperSize->x;
3256 paperSize->y = hold;
3979 // Allocate a global handle big enough to hold DEVNAMES.

Completed in 113 milliseconds