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

12

/openjdk7/hotspot/test/compiler/7119644/
H A DTestByteDoubleVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (byte)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(byte[] a, byte[] b, double[] c, double[] d) { method in class:TestByteDoubleVect
H A DTestByteFloatVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (byte)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.f);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(byte[] a, byte[] b, float[] c, float[] d) { method in class:TestByteFloatVect
H A DTestByteIntVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (byte)123);
100 errn += verify("test_cp: b1", i, b1[i], (int)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(byte[] a, byte[] b, int[] c, int[] d) { method in class:TestByteIntVect
H A DTestByteLongVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (byte)123);
100 errn += verify("test_cp: b1", i, b1[i], (long)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(byte[] a, byte[] b, long[] c, long[] d) { method in class:TestByteLongVect
H A DTestByteShortVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (byte)123);
100 errn += verify("test_cp: b1", i, b1[i], (short)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(byte[] a, byte[] b, short[] c, short[] d) { method in class:TestByteShortVect
H A DTestCharShortVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (char)123);
100 errn += verify("test_cp: b1", i, b1[i], (short)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(char[] a, char[] b, short[] c, short[] d) { method in class:TestCharShortVect
H A DTestFloatDoubleVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], 123.f);
100 errn += verify("test_cp: b1", i, b1[i], 103.);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(float[] a, float[] b, double[] c, double[] d) { method in class:TestFloatDoubleVect
H A DTestIntDoubleVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (int)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(int[] a, int[] b, double[] c, double[] d) { method in class:TestIntDoubleVect
H A DTestIntFloatVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (int)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.f);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(int[] a, int[] b, float[] c, float[] d) { method in class:TestIntFloatVect
H A DTestIntLongVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (int)123);
100 errn += verify("test_cp: b1", i, b1[i], (long)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(int[] a, int[] b, long[] c, long[] d) { method in class:TestIntLongVect
H A DTestLongDoubleVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (long)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(long[] a, long[] b, double[] c, double[] d) { method in class:TestLongDoubleVect
H A DTestLongFloatVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (long)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.f);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(long[] a, long[] b, float[] c, float[] d) { method in class:TestLongFloatVect
H A DTestShortDoubleVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (short)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(short[] a, short[] b, double[] c, double[] d) { method in class:TestShortDoubleVect
H A DTestShortFloatVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (short)123);
100 errn += verify("test_cp: b1", i, b1[i], 103.f);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(short[] a, short[] b, float[] c, float[] d) { method in class:TestShortFloatVect
H A DTestShortIntVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (short)123);
100 errn += verify("test_cp: b1", i, b1[i], (int)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(short[] a, short[] b, int[] c, int[] d) { method in class:TestShortIntVect
H A DTestShortLongVect.java60 test_cp(a1, a2, b1, b2);
97 test_cp(a1, a2, b1, b2);
99 errn += verify("test_cp: a1", i, a1[i], (short)123);
100 errn += verify("test_cp: b1", i, b1[i], (long)103);
360 test_cp(a1, a2, b1, b2);
363 System.out.println("test_cp: " + (end - start));
463 static void test_cp(short[] a, short[] b, long[] c, long[] d) { method in class:TestShortLongVect
H A DTestBooleanVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], true);
508 test_cp(a1, a2);
511 System.out.println("test_cp: " + (end - start));
743 static void test_cp(boolean[] a, boolean[] b) { method in class:TestBooleanVect
H A DTestByteVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], (byte)123);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(byte[] a, byte[] b) { method in class:TestByteVect
H A DTestCharVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], (char)123);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(char[] a, char[] b) { method in class:TestCharVect
H A DTestDoubleVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], 123.);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(double[] a, double[] b) { method in class:TestDoubleVect
H A DTestIntVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], (int)123);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(int[] a, int[] b) { method in class:TestIntVect
H A DTestLongVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], (long)123);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(long[] a, long[] b) { method in class:TestLongVect
H A DTestShortVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], (short)123);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(short[] a, short[] b) { method in class:TestShortVect
H A DTestFloatVect.java58 test_cp(a1, a2);
112 test_cp(a1, a2);
114 errn += verify("test_cp: a1", i, a1[i], 123.f);
509 test_cp(a1, a2);
512 System.out.println("test_cp: " + (end - start));
744 static void test_cp(float[] a, float[] b) { method in class:TestFloatVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java66 test_cp(a1, a2);
120 test_cp(a1, a2);
122 errn += verify("test_cp: a1", i, a1.get(i), 123);
525 test_cp(a1, a2);
528 System.out.println("test_cp: " + (end - start));
760 static void test_cp(AtomicIntegerArray a, AtomicIntegerArray b) { method in class:TestIntAtomicCAS

Completed in 197 milliseconds

12