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

12

/openjdk9/hotspot/test/compiler/codegen/
H A DTestByteFloatVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(byte[] a, byte[] b, float[] c, float[] d) { method in class:TestByteFloatVect
H A DTestByteDoubleVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(byte[] a, byte[] b, double[] c, double[] d) { method in class:TestByteDoubleVect
H A DTestByteIntVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (int)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(byte[] a, byte[] b, int[] c, int[] d) { method in class:TestByteIntVect
H A DTestShortLongVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (long)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(short[] a, short[] b, long[] c, long[] d) { method in class:TestShortLongVect
H A DTestShortIntVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (int)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(short[] a, short[] b, int[] c, int[] d) { method in class:TestShortIntVect
H A DTestFloatDoubleVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], 123.f);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(float[] a, float[] b, double[] c, double[] d) { method in class:TestFloatDoubleVect
H A DTestCharShortVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (char)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (short)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(char[] a, char[] b, short[] c, short[] d) { method in class:TestCharShortVect
H A DTestByteShortVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (short)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(byte[] a, byte[] b, short[] c, short[] d) { method in class:TestByteShortVect
H A DTestByteLongVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (long)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(byte[] a, byte[] b, long[] c, long[] d) { method in class:TestByteLongVect
H A DTestIntFloatVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(int[] a, int[] b, float[] c, float[] d) { method in class:TestIntFloatVect
H A DTestShortFloatVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(short[] a, short[] b, float[] c, float[] d) { method in class:TestShortFloatVect
H A DTestLongFloatVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (long)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.f);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(long[] a, long[] b, float[] c, float[] d) { method in class:TestLongFloatVect
H A DTestIntDoubleVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(int[] a, int[] b, double[] c, double[] d) { method in class:TestIntDoubleVect
H A DTestShortDoubleVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(short[] a, short[] b, double[] c, double[] d) { method in class:TestShortDoubleVect
H A DTestLongDoubleVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (long)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], 103.);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(long[] a, long[] b, double[] c, double[] d) { method in class:TestLongDoubleVect
H A DTestIntLongVect.java69 test_cp_oppos(a1, a2, b1, b2);
146 test_cp_oppos(a1, a2, b1, b2);
148 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
149 errn += verify("test_cp_oppos: b1", i, b1[i], (long)103);
399 test_cp_oppos(a1, a2, b1, b2);
402 System.out.println("test_cp_oppos: " + (end - start));
504 static void test_cp_oppos(int[] a, int[] b, long[] c, long[] d) { method in class:TestIntLongVect
H A DTestBooleanVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], true);
573 test_cp_oppos(a1, a2);
576 System.out.println("test_cp_oppos: " + (end - start));
802 static void test_cp_oppos(boolean[] a, boolean[] b) { method in class:TestBooleanVect
H A DTestShortVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], (short)123);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(short[] a, short[] b) { method in class:TestShortVect
H A DTestCharVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], (char)123);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(char[] a, char[] b) { method in class:TestCharVect
H A DTestByteVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], (byte)123);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(byte[] a, byte[] b) { method in class:TestByteVect
H A DTestDoubleVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], 123.);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(double[] a, double[] b) { method in class:TestDoubleVect
H A DTestLongVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], (long)123);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(long[] a, long[] b) { method in class:TestLongVect
H A DTestIntVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], (int)123);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(int[] a, int[] b) { method in class:TestIntVect
H A DTestFloatVect.java71 test_cp_oppos(a1, a2);
169 test_cp_oppos(a1, a2);
171 errn += verify("test_cp_oppos: a1", i, a1[i], 123.f);
574 test_cp_oppos(a1, a2);
577 System.out.println("test_cp_oppos: " + (end - start));
803 static void test_cp_oppos(float[] a, float[] b) { method in class:TestFloatVect
/openjdk9/hotspot/test/compiler/c2/cr8004867/
H A DTestIntUnsafeCAS.java96 test_cp_oppos(a1, a2);
194 test_cp_oppos(a1, a2);
196 errn += verify("test_cp_oppos: a1", i, a1[i], 123);
607 test_cp_oppos(a1, a2);
610 System.out.println("test_cp_oppos: " + (end - start));
840 static void test_cp_oppos(int[] a, int[] b) { method in class:TestIntUnsafeCAS

Completed in 136 milliseconds

12