Searched refs:test_2ci (Results 1 - 14 of 14) sorted by relevance

/openjdk9/hotspot/test/compiler/codegen/
H A DTestBooleanVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], false);
122 errn += verify("test_2ci: a2", i, a2[i], false);
517 test_2ci(a1, a2);
520 System.out.println("test_2ci: " + (end - start));
751 static void test_2ci(boolean[] a, boolean[] b) { method in class:TestBooleanVect
H A DTestShortVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], (short)-123);
122 errn += verify("test_2ci: a2", i, a2[i], (short)-103);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(short[] a, short[] b) { method in class:TestShortVect
H A DTestCharVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], (char)-123);
122 errn += verify("test_2ci: a2", i, a2[i], (char)-103);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(char[] a, char[] b) { method in class:TestCharVect
H A DTestByteVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], (byte)-123);
122 errn += verify("test_2ci: a2", i, a2[i], (byte)-103);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(byte[] a, byte[] b) { method in class:TestByteVect
H A DTestDoubleVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], -123.);
122 errn += verify("test_2ci: a2", i, a2[i], -103.);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(double[] a, double[] b) { method in class:TestDoubleVect
H A DTestLongVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], (long)-123);
122 errn += verify("test_2ci: a2", i, a2[i], (long)-103);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(long[] a, long[] b) { method in class:TestLongVect
H A DTestIntVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], (int)-123);
122 errn += verify("test_2ci: a2", i, a2[i], (int)-103);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(int[] a, int[] b) { method in class:TestIntVect
H A DTestFloatVect.java62 test_2ci(a1, a2);
119 test_2ci(a1, a2);
121 errn += verify("test_2ci: a1", i, a1[i], -123.f);
122 errn += verify("test_2ci: a2", i, a2[i], -103.f);
518 test_2ci(a1, a2);
521 System.out.println("test_2ci: " + (end - start));
752 static void test_2ci(float[] a, float[] b) { method in class:TestFloatVect
/openjdk9/hotspot/test/compiler/c2/cr8004867/
H A DTestIntUnsafeCAS.java87 test_2ci(a1, a2);
144 test_2ci(a1, a2);
146 errn += verify("test_2ci: a1", i, a1[i], -123);
147 errn += verify("test_2ci: a2", i, a2[i], -103);
551 test_2ci(a1, a2);
554 System.out.println("test_2ci: " + (end - start));
789 static void test_2ci(int[] a, int[] b) { method in class:TestIntUnsafeCAS
H A DTestIntUnsafeVolatile.java87 test_2ci(a1, a2);
144 test_2ci(a1, a2);
146 errn += verify("test_2ci: a1", i, a1[i], -123);
147 errn += verify("test_2ci: a2", i, a2[i], -103);
551 test_2ci(a1, a2);
554 System.out.println("test_2ci: " + (end - start));
789 static void test_2ci(int[] a, int[] b) { method in class:TestIntUnsafeVolatile
H A DTestIntUnsafeOrdered.java87 test_2ci(a1, a2);
144 test_2ci(a1, a2);
146 errn += verify("test_2ci: a1", i, a1[i], -123);
147 errn += verify("test_2ci: a2", i, a2[i], -103);
551 test_2ci(a1, a2);
554 System.out.println("test_2ci: " + (end - start));
789 static void test_2ci(int[] a, int[] b) { method in class:TestIntUnsafeOrdered
H A DTestIntAtomicCAS.java72 test_2ci(a1, a2);
129 test_2ci(a1, a2);
131 errn += verify("test_2ci: a1", i, a1.get(i), -123);
132 errn += verify("test_2ci: a2", i, a2.get(i), -103);
536 test_2ci(a1, a2);
539 System.out.println("test_2ci: " + (end - start));
770 static void test_2ci(AtomicIntegerArray a, AtomicIntegerArray b) { method in class:TestIntAtomicCAS
H A DTestIntAtomicOrdered.java72 test_2ci(a1, a2);
129 test_2ci(a1, a2);
131 errn += verify("test_2ci: a1", i, a1.get(i), -123);
132 errn += verify("test_2ci: a2", i, a2.get(i), -103);
536 test_2ci(a1, a2);
539 System.out.println("test_2ci: " + (end - start));
770 static void test_2ci(AtomicIntegerArray a, AtomicIntegerArray b) { method in class:TestIntAtomicOrdered
H A DTestIntAtomicVolatile.java72 test_2ci(a1, a2);
129 test_2ci(a1, a2);
131 errn += verify("test_2ci: a1", i, a1.get(i), -123);
132 errn += verify("test_2ci: a2", i, a2.get(i), -103);
536 test_2ci(a1, a2);
539 System.out.println("test_2ci: " + (end - start));
770 static void test_2ci(AtomicIntegerArray a, AtomicIntegerArray b) { method in class:TestIntAtomicVolatile

Completed in 191 milliseconds