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

12

/openjdk9/hotspot/test/compiler/codegen/
H A DTestByteFloatVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (byte)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.f);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(byte[] a, byte[] b, float[] c, float[] d) { method in class:TestByteFloatVect
H A DTestByteDoubleVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (byte)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(byte[] a, byte[] b, double[] c, double[] d) { method in class:TestByteDoubleVect
H A DTestByteIntVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (byte)123);
103 errn += verify("test_cp: b1", i, b1[i], (int)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(byte[] a, byte[] b, int[] c, int[] d) { method in class:TestByteIntVect
H A DTestShortLongVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (short)123);
103 errn += verify("test_cp: b1", i, b1[i], (long)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(short[] a, short[] b, long[] c, long[] d) { method in class:TestShortLongVect
H A DTestShortIntVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (short)123);
103 errn += verify("test_cp: b1", i, b1[i], (int)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(short[] a, short[] b, int[] c, int[] d) { method in class:TestShortIntVect
H A DTestFloatDoubleVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], 123.f);
103 errn += verify("test_cp: b1", i, b1[i], 103.);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(float[] a, float[] b, double[] c, double[] d) { method in class:TestFloatDoubleVect
H A DTestCharShortVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (char)123);
103 errn += verify("test_cp: b1", i, b1[i], (short)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(char[] a, char[] b, short[] c, short[] d) { method in class:TestCharShortVect
H A DTestByteShortVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (byte)123);
103 errn += verify("test_cp: b1", i, b1[i], (short)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(byte[] a, byte[] b, short[] c, short[] d) { method in class:TestByteShortVect
H A DTestByteLongVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (byte)123);
103 errn += verify("test_cp: b1", i, b1[i], (long)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(byte[] a, byte[] b, long[] c, long[] d) { method in class:TestByteLongVect
H A DTestIntFloatVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (int)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.f);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(int[] a, int[] b, float[] c, float[] d) { method in class:TestIntFloatVect
H A DTestShortFloatVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (short)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.f);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(short[] a, short[] b, float[] c, float[] d) { method in class:TestShortFloatVect
H A DTestLongFloatVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (long)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.f);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(long[] a, long[] b, float[] c, float[] d) { method in class:TestLongFloatVect
H A DTestIntDoubleVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (int)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(int[] a, int[] b, double[] c, double[] d) { method in class:TestIntDoubleVect
H A DTestShortDoubleVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (short)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(short[] a, short[] b, double[] c, double[] d) { method in class:TestShortDoubleVect
H A DTestLongDoubleVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (long)123);
103 errn += verify("test_cp: b1", i, b1[i], 103.);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(long[] a, long[] b, double[] c, double[] d) { method in class:TestLongDoubleVect
H A DTestIntLongVect.java63 test_cp(a1, a2, b1, b2);
100 test_cp(a1, a2, b1, b2);
102 errn += verify("test_cp: a1", i, a1[i], (int)123);
103 errn += verify("test_cp: b1", i, b1[i], (long)103);
363 test_cp(a1, a2, b1, b2);
366 System.out.println("test_cp: " + (end - start));
466 static void test_cp(int[] a, int[] b, long[] c, long[] d) { method in class:TestIntLongVect
H A DTestBooleanVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], true);
511 test_cp(a1, a2);
514 System.out.println("test_cp: " + (end - start));
746 static void test_cp(boolean[] a, boolean[] b) { method in class:TestBooleanVect
H A DTestShortVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], (short)123);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(short[] a, short[] b) { method in class:TestShortVect
H A DTestCharVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], (char)123);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(char[] a, char[] b) { method in class:TestCharVect
H A DTestByteVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], (byte)123);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(byte[] a, byte[] b) { method in class:TestByteVect
H A DTestDoubleVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], 123.);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(double[] a, double[] b) { method in class:TestDoubleVect
H A DTestLongVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], (long)123);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(long[] a, long[] b) { method in class:TestLongVect
H A DTestIntVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], (int)123);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(int[] a, int[] b) { method in class:TestIntVect
H A DTestFloatVect.java61 test_cp(a1, a2);
115 test_cp(a1, a2);
117 errn += verify("test_cp: a1", i, a1[i], 123.f);
512 test_cp(a1, a2);
515 System.out.println("test_cp: " + (end - start));
747 static void test_cp(float[] a, float[] b) { method in class:TestFloatVect
/openjdk9/hotspot/test/compiler/c2/cr8004867/
H A DTestIntUnsafeCAS.java86 test_cp(a1, a2);
140 test_cp(a1, a2);
142 errn += verify("test_cp: a1", i, a1[i], 123);
545 test_cp(a1, a2);
548 System.out.println("test_cp: " + (end - start));
784 static void test_cp(int[] a, int[] b) { method in class:TestIntUnsafeCAS

Completed in 144 milliseconds

12