Searched defs:test_cp_oppos (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/hotspot/test/compiler/7119644/
H A DTestByteDoubleVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(byte[] a, byte[] b, double[] c, double[] d) { method in class:TestByteDoubleVect
H A DTestByteFloatVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(byte[] a, byte[] b, float[] c, float[] d) { method in class:TestByteFloatVect
H A DTestByteIntVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (int)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(byte[] a, byte[] b, int[] c, int[] d) { method in class:TestByteIntVect
H A DTestByteLongVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (long)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(byte[] a, byte[] b, long[] c, long[] d) { method in class:TestByteLongVect
H A DTestByteShortVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (short)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(byte[] a, byte[] b, short[] c, short[] d) { method in class:TestByteShortVect
H A DTestCharShortVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (char)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (short)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(char[] a, char[] b, short[] c, short[] d) { method in class:TestCharShortVect
H A DTestFloatDoubleVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], 123.f);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(float[] a, float[] b, double[] c, double[] d) { method in class:TestFloatDoubleVect
H A DTestIntDoubleVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(int[] a, int[] b, double[] c, double[] d) { method in class:TestIntDoubleVect
H A DTestIntFloatVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(int[] a, int[] b, float[] c, float[] d) { method in class:TestIntFloatVect
H A DTestIntLongVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (long)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(int[] a, int[] b, long[] c, long[] d) { method in class:TestIntLongVect
H A DTestLongDoubleVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (long)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(long[] a, long[] b, double[] c, double[] d) { method in class:TestLongDoubleVect
H A DTestLongFloatVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (long)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(long[] a, long[] b, float[] c, float[] d) { method in class:TestLongFloatVect
H A DTestShortDoubleVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(short[] a, short[] b, double[] c, double[] d) { method in class:TestShortDoubleVect
H A DTestShortFloatVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(short[] a, short[] b, float[] c, float[] d) { method in class:TestShortFloatVect
H A DTestShortIntVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (int)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(short[] a, short[] b, int[] c, int[] d) { method in class:TestShortIntVect
H A DTestShortLongVect.java66 test_cp_oppos(a1, a2, b1, b2);
143 test_cp_oppos(a1, a2, b1, b2);
145 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
146 errn += verify("test_cp_oppos: b1", i, b1[i], (long)103);
396 test_cp_oppos(a1, a2, b1, b2);
399 System.out.println("test_cp_oppos: " + (end - start));
501 static void test_cp_oppos(short[] a, short[] b, long[] c, long[] d) { method in class:TestShortLongVect
H A DTestBooleanVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], true);
570 test_cp_oppos(a1, a2);
573 System.out.println("test_cp_oppos: " + (end - start));
799 static void test_cp_oppos(boolean[] a, boolean[] b) { method in class:TestBooleanVect
H A DTestByteVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(byte[] a, byte[] b) { method in class:TestByteVect
H A DTestCharVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], (char)123);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(char[] a, char[] b) { method in class:TestCharVect
H A DTestDoubleVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], 123.);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(double[] a, double[] b) { method in class:TestDoubleVect
H A DTestFloatVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], 123.f);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(float[] a, float[] b) { method in class:TestFloatVect
H A DTestIntVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(int[] a, int[] b) { method in class:TestIntVect
H A DTestLongVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], (long)123);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(long[] a, long[] b) { method in class:TestLongVect
H A DTestShortVect.java68 test_cp_oppos(a1, a2);
166 test_cp_oppos(a1, a2);
168 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
571 test_cp_oppos(a1, a2);
574 System.out.println("test_cp_oppos: " + (end - start));
800 static void test_cp_oppos(short[] a, short[] b) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java76 test_cp_oppos(a1, a2);
174 test_cp_oppos(a1, a2);
176 errn += verify("test_cp_oppos: a1", i, a1.get(i), 123);
587 test_cp_oppos(a1, a2);
590 System.out.println("test_cp_oppos: " + (end - start));
816 static void test_cp_oppos(AtomicIntegerArray a, AtomicIntegerArray b) { method in class:TestIntAtomicCAS

Completed in 84 milliseconds

12