Searched refs:ib (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DPerfIntegerMonitor.java43 IntBuffer ib; field in class:PerfIntegerMonitor
53 * @param ib the buffer containing the integer instrument data.
56 boolean supported, IntBuffer ib) {
58 this.ib = ib;
70 return new Integer(ib.get(0));
79 return ib.get(0);
55 PerfIntegerMonitor(String name, Units u, Variability v, boolean supported, IntBuffer ib) argument
H A DAbstractPerfDataBufferPrologue.java204 IntBuffer ib = IntBuffer.wrap(holder);
205 ib.limit(1);
206 return ib;
219 IntBuffer ib = IntBuffer.wrap(holder);
220 ib.limit(1);
221 return ib;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBufferPrologue.java194 IntBuffer ib = byteBuffer.asIntBuffer();
195 ib.limit(1);
196 return ib;
208 IntBuffer ib = IntBuffer.allocate(1);
209 ib.put(byteBuffer.capacity());
210 return ib;
223 IntBuffer ib = byteBuffer.asIntBuffer();
224 ib.limit(1);
225 return ib;
253 IntBuffer ib
[all...]
H A DPerfDataBuffer.java214 IntBuffer ib = null;
217 ib = prologue.majorVersionBuffer();
219 Variability.CONSTANT, false, ib);
223 ib = prologue.minorVersionBuffer();
225 Variability.CONSTANT, false, ib);
229 ib = prologue.sizeBuffer();
231 Variability.MONOTONIC, false, ib);
235 ib = prologue.usedBuffer();
237 Variability.MONOTONIC, false, ib);
241 ib
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBufferPrologue.java161 IntBuffer ib = byteBuffer.asIntBuffer();
162 ib.limit(1);
163 return ib;
175 IntBuffer ib = IntBuffer.allocate(1);
176 ib.put(byteBuffer.capacity());
177 return ib;
190 IntBuffer ib = byteBuffer.asIntBuffer();
191 ib.limit(1);
192 return ib;
H A DPerfDataBuffer.java206 IntBuffer ib = null;
209 ib = prologue.majorVersionBuffer();
211 Variability.CONSTANT, false, ib);
215 ib = prologue.minorVersionBuffer();
217 Variability.CONSTANT, false, ib);
221 ib = prologue.sizeBuffer();
223 Variability.MONOTONIC, false, ib);
227 ib = prologue.usedBuffer();
229 Variability.MONOTONIC, false, ib);
233 ib
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpmontg.c126 mp_size ib; local
138 ib = MP_USED(a) + MP_MAX(MP_USED(b), MP_USED(&mmm->N)) + 2;
139 if((res = s_mp_pad(c, ib)) != MP_OKAY)
145 s_mp_setz(MP_DIGITS(c) + useda + 1, ib - (useda + 1));
151 for (ib = 1; ib < usedb; ib++) {
156 s_mpv_mul_d_add_prop(MP_DIGITS(a), useda, b_i, MP_DIGITS(c) + ib);
157 m_i = MP_DIGIT(c, ib) * mmm->n0prime;
158 s_mp_mul_d_add_offset(&mmm->N, m_i, c, ib);
[all...]
H A Dmp_gf2m.c283 mp_size ib, a_used, b_used; local
316 for (ib = 1; ib < b_used; ib++) {
321 s_bmul_d_add(MP_DIGITS(a), a_used, b_i, MP_DIGITS(c) + ib);
323 MP_DIGIT(c, ib + a_used) = b_i;
H A Dmpi.c818 mp_size ib; local
874 for (ib = 1; ib < usedb; ib++) {
879 s_mpv_mul_d_add(MP_DIGITS(a), useda, b_i, MP_DIGITS(c) + ib);
881 MP_DIGIT(c, ib + useda) = b_i;
3671 mp_size ib; local
3689 for(ib = 0, ia = offset; ib < lim; ib
[all...]
/openjdk7/jdk/test/sun/net/sdp/
H A Dsanity.sh37 IB_LINKS=ib.links
38 IB_ADDRS=ib.addrs
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextSourceLabel.java52 Rectangle2D ib; field in class:TextSourceLabel
103 if (ib == null) {
104 ib = createItalicBounds();
106 return new Rectangle2D.Float((float)(ib.getX() + x),
107 (float)(ib.getY() + y),
108 (float)ib.getWidth(),
109 (float)ib.getHeight());
H A DExtendedTextSourceLabel.java70 Rectangle2D ib; field in class:ExtendedTextSourceLabel
161 if (ib == null) {
162 ib = createItalicBounds();
164 return new Rectangle2D.Float((float)(ib.getX() + x),
165 (float)(ib.getY() + y),
166 (float)ib.getWidth(),
167 (float)ib.getHeight());
/openjdk7/jdk/test/java/io/Serializable/skipToEndOfBlockData/
H A DSkipToEndOfBlockData.java121 InnocentBystander ib, ibcopy;
127 ib = new InnocentBystander("foo");
131 oout.writeObject(ib);
140 if (! (mr.equals(mrcopy) && mre.equals(mrecopy) && ib.equals(ibcopy)))
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java121 Result(ByteBuffer ib, CharBuffer ob, CoderResult cr) { argument
122 ipos = ib.position();
123 ia = toArray(ib);
125 direct = ib.isDirect();
194 Result recode(ByteBuffer ib, CharBuffer ob) { argument
197 ib.clear(); // Prepare to read
202 CoderResult cr = coder.decode(ib, ob, false);
203 equal(ib.limit(), ib.capacity());
205 Result r = new Result(ib, o
[all...]
H A DFindEncoderBugs.java128 Result(CharBuffer ib, ByteBuffer ob, CoderResult cr) { argument
129 ipos = ib.position();
130 ia = toArray(ib);
132 direct = ib.isDirect();
293 // for (CharBuffer ib : new CharBuffer[] { rib, dib }) {
294 // Result r = recode(ib, rob);
310 // for (CharBuffer ib : new CharBuffer[] { rib, dib }) {
311 // Result r = recode(ib, rob);
318 // ib.position() == 2))) {
328 Result recode(CharBuffer ib, ByteBuffe argument
[all...]
/openjdk7/jdk/test/com/oracle/net/
H A Dsanity.sh30 IB_LINKS=ib.links
46 egrep "^[ \t]+ib" /proc/net/dev|cut -d':' -f1|tr -d '\t ' > ${IB_LINKS}
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicRearrangementProcessor.cpp98 le_int32 ia, ib, ic, id, ix, x; local
154 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
168 glyphStorage.setCharIndex(lastGlyph, ib, success);
175 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
188 glyphStorage.setCharIndex(lastGlyph - 1, ib, success);
289 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
306 glyphStorage.setCharIndex(lastGlyph, ib, success);
314 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
330 glyphStorage.setCharIndex(lastGlyph - 1, ib, success);
345 ib
[all...]
H A DIndicRearrangementProcessor2.cpp95 le_int32 ia, ib, ic, id, ix, x; local
151 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
165 glyphStorage.setCharIndex(lastGlyph, ib, success);
172 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
185 glyphStorage.setCharIndex(lastGlyph - 1, ib, success);
286 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
303 glyphStorage.setCharIndex(lastGlyph, ib, success);
311 ib = glyphStorage.getCharIndex(firstGlyph + 1, success);
327 glyphStorage.setCharIndex(lastGlyph - 1, ib, success);
342 ib
[all...]
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DStarter.java74 Starter ib = new Starter("SB", sbLoader, clsForSB);
76 new Thread(ib).start();
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java380 void copyAttrForCode(InjectBytecodes ib) throws IOException { argument
385 ib.copyLineNumberAttr();
387 ib.copyLocalVarAttr();
445 InjectBytecodes ib = new InjectBytecodes(c, codeLength, className, methodName);
448 ib.injectAfter(opc_new, allocInjector);
449 ib.injectAfter(opc_newarray, allocInjector);
450 ib.injectAfter(opc_anewarray, allocInjector);
451 ib.injectAfter(opc_multianewarray, allocInjector);
454 ib.inject(0, callInjector.bytecodes(className, methodName, 0));
457 ib
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedListBash.java173 Integer[] ib = (Integer[]) l.toArray(ia);
174 if (ia != ib || !l.equals(Arrays.asList(ia)))
178 ib = (Integer[]) l.toArray(ia);
179 if (ia != ib || ia[listSize] != null
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java408 BlockIntermediate ib = intermediate.get(index);
409 ib.semi = n;
410 array.add(ib);
412 for (InputBlock b : ib.block.getSuccessors()) {
473 for (BlockIntermediate ib : intermediate) {
474 if (ib.dominator == -1) {
475 ib.dominator = 0;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DHighPrecisionJScrollBar.java289 BigDecimal ib = new BigDecimal(Integer.toString(i));
290 if (down) return ib.multiply(getScaleFactor()).toBigInteger();
291 else return ib.divide(getScaleFactor(), BigDecimal.ROUND_DOWN).toBigInteger();
303 // return ib.shiftLeft(Math.max(2, maximumHP.bitLength() - 33));
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DLWCToolkit.m235 ib = (UInt32) (b*255+0.5),
238 // NSLog(@"%@ %d, %d, %d", c, ir, ig, ib);
240 return ((ia & 0xFF) << 24) | ((ir & 0xFF) << 16) | ((ig & 0xFF) << 8) | ((ib & 0xFF) << 0);
/openjdk7/jdk/test/java/nio/Buffer/
H A DBasicByte.java240 IntBuffer ib = b.asIntBuffer();
241 BasicInt.test(level, ib, direct);
243 checkInvalidMarkException(ib);

Completed in 120 milliseconds

12