Searched defs:test_cp_inv (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/test/compiler/7119644/
H A DTestBooleanVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], true);
632 test_cp_inv(a1, a2, OFFSET);
635 System.out.println("test_cp_inv: " + (end - start));
856 static void test_cp_inv(boolean[] a, boolean[] b, int k) { method in class:TestBooleanVect
H A DTestByteVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], (byte)123);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(byte[] a, byte[] b, int k) { method in class:TestByteVect
H A DTestCharVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], (char)123);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(char[] a, char[] b, int k) { method in class:TestCharVect
H A DTestDoubleVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], 123.);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(double[] a, double[] b, int k) { method in class:TestDoubleVect
H A DTestFloatVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], 123.f);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(float[] a, float[] b, int k) { method in class:TestFloatVect
H A DTestIntVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], (int)123);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(int[] a, int[] b, int k) { method in class:TestIntVect
H A DTestLongVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], (long)123);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(long[] a, long[] b, int k) { method in class:TestLongVect
H A DTestShortVect.java78 test_cp_inv(a1, a2, OFFSET);
224 test_cp_inv(a1, a2, OFFSET);
226 errn += verify("test_cp_inv: a1", i, a1[i], (short)123);
633 test_cp_inv(a1, a2, OFFSET);
636 System.out.println("test_cp_inv: " + (end - start));
857 static void test_cp_inv(short[] a, short[] b, int k) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java86 test_cp_inv(a1, a2, OFFSET);
232 test_cp_inv(a1, a2, OFFSET);
234 errn += verify("test_cp_inv: a1", i, a1.get(i), 123);
649 test_cp_inv(a1, a2, OFFSET);
652 System.out.println("test_cp_inv: " + (end - start));
873 static void test_cp_inv(AtomicIntegerArray a, AtomicIntegerArray b, int k) { method in class:TestIntAtomicCAS
H A DTestIntAtomicOrdered.java86 test_cp_inv(a1, a2, OFFSET);
232 test_cp_inv(a1, a2, OFFSET);
234 errn += verify("test_cp_inv: a1", i, a1.get(i), 123);
649 test_cp_inv(a1, a2, OFFSET);
652 System.out.println("test_cp_inv: " + (end - start));
873 static void test_cp_inv(AtomicIntegerArray a, AtomicIntegerArray b, int k) { method in class:TestIntAtomicOrdered
H A DTestIntAtomicVolatile.java86 test_cp_inv(a1, a2, OFFSET);
232 test_cp_inv(a1, a2, OFFSET);
234 errn += verify("test_cp_inv: a1", i, a1.get(i), 123);
649 test_cp_inv(a1, a2, OFFSET);
652 System.out.println("test_cp_inv: " + (end - start));
873 static void test_cp_inv(AtomicIntegerArray a, AtomicIntegerArray b, int k) { method in class:TestIntAtomicVolatile
H A DTestIntUnsafeCAS.java103 test_cp_inv(a1, a2, OFFSET);
249 test_cp_inv(a1, a2, OFFSET);
251 errn += verify("test_cp_inv: a1", i, a1[i], 123);
666 test_cp_inv(a1, a2, OFFSET);
669 System.out.println("test_cp_inv: " + (end - start));
894 static void test_cp_inv(int[] a, int[] b, int k) { method in class:TestIntUnsafeCAS
H A DTestIntUnsafeOrdered.java103 test_cp_inv(a1, a2, OFFSET);
249 test_cp_inv(a1, a2, OFFSET);
251 errn += verify("test_cp_inv: a1", i, a1[i], 123);
666 test_cp_inv(a1, a2, OFFSET);
669 System.out.println("test_cp_inv: " + (end - start));
894 static void test_cp_inv(int[] a, int[] b, int k) { method in class:TestIntUnsafeOrdered
H A DTestIntUnsafeVolatile.java103 test_cp_inv(a1, a2, OFFSET);
249 test_cp_inv(a1, a2, OFFSET);
251 errn += verify("test_cp_inv: a1", i, a1[i], 123);
666 test_cp_inv(a1, a2, OFFSET);
669 System.out.println("test_cp_inv: " + (end - start));
894 static void test_cp_inv(int[] a, int[] b, int k) { method in class:TestIntUnsafeVolatile

Completed in 239 milliseconds