Searched refs:ib1 (Results 1 - 8 of 8) sorted by relevance

/openjdk10/hotspot/test/compiler/eliminateAutobox/
H A DTestDoubleBoxing.java81 Double ib1 = new Double(i);
83 return ib1 + ib2;
87 Double ib1 = Double.valueOf(i);
89 return ib1 + ib2;
93 Double ib1 = new Double(i);
95 return ib1 + ib2;
98 static double simplep2(double i, Double ib1) { argument
100 return ib1 + ib2;
104 Double ib1 = ibc;
106 return ib1
174 testp2(double f, int i, Double ib1) argument
[all...]
H A DTestShortBoxing.java81 Short ib1 = new Short(i);
83 return (short)(ib1 + ib2);
87 Short ib1 = Short.valueOf(i);
89 return (short)(ib1 + ib2);
93 Short ib1 = new Short(i);
95 return (short)(ib1 + ib2);
98 static short simplep2(short i, Short ib1) { argument
100 return (short)(ib1 + ib2);
104 Short ib1 = ibc;
106 return (short)(ib1
174 testp2(short i, Short ib1) argument
[all...]
H A DTestByteBoxing.java80 Byte ib1 = new Byte(i);
82 return (byte)(ib1 + ib2);
86 Byte ib1 = Byte.valueOf(i);
88 return (byte)(ib1 + ib2);
92 Byte ib1 = new Byte(i);
94 return (byte)(ib1 + ib2);
97 static byte simplep2(byte i, Byte ib1) { argument
99 return (byte)(ib1 + ib2);
103 Byte ib1 = ibc;
105 return (byte)(ib1
173 testp2(byte i, Byte ib1) argument
[all...]
H A DTestIntBoxing.java81 Integer ib1 = new Integer(i);
83 return ib1 + ib2;
87 Integer ib1 = Integer.valueOf(i);
89 return ib1 + ib2;
93 Integer ib1 = new Integer(i);
95 return ib1 + ib2;
98 static int simplep2(int i, Integer ib1) { argument
100 return ib1 + ib2;
104 Integer ib1 = ibc;
106 return ib1
174 testp2(int i, Integer ib1) argument
[all...]
H A DTestLongBoxing.java81 Long ib1 = new Long(i);
83 return ib1 + ib2;
87 Long ib1 = Long.valueOf(i);
89 return ib1 + ib2;
93 Long ib1 = new Long(i);
95 return ib1 + ib2;
98 static long simplep2(long i, Long ib1) { argument
100 return ib1 + ib2;
104 Long ib1 = ibc;
106 return ib1
174 testp2(long i, Long ib1) argument
[all...]
H A DTestFloatBoxing.java81 Float ib1 = new Float(i);
83 return ib1 + ib2;
87 Float ib1 = Float.valueOf(i);
89 return ib1 + ib2;
93 Float ib1 = new Float(i);
95 return ib1 + ib2;
98 static float simplep2(float i, Float ib1) { argument
100 return ib1 + ib2;
104 Float ib1 = ibc;
106 return ib1
174 testp2(float f, int i, Float ib1) argument
[all...]
/openjdk10/jdk/test/java/awt/dnd/ImageTransferTest/
H A DImageTransferTest.java181 int[] ib1 = getImageData(im1);
184 if (ib1.length != ib2.length) {
192 for (int i = 0; i < ib1.length; i++) {
193 if (ib1[i] != ib2[i]) {
195 Integer.toHexString(ib1[i]) + " " +
201 for (int i = 0; i < ib1.length; i++) {
202 if ((ib1[i] & 0x00FFFFFF) != (ib2[i] & 0x00FFFFFF)) {
204 Integer.toHexString(ib1[i]) + " " +
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DInfer.java1289 void reportBoundError(UndetVar uv, InferenceBound ib1, InferenceBound ib2) { argument
1292 StringUtils.toLowerCase(ib1.name()),
1295 uv.getBounds(ib1),

Completed in 111 milliseconds