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

/openjdk9/hotspot/test/compiler/codegen/
H A DTestBooleanVect.java78 test_2vi_off(a1, a2, true, true);
205 test_2vi_off(a1, a2, true, true);
207 errn += verify("test_2vi_off: a1", i, a1[i], true);
208 errn += verify("test_2vi_off: a2", i, a2[i], true);
211 errn += verify("test_2vi_off: a1", i, a1[i], false);
212 errn += verify("test_2vi_off: a2", i, a2[i], false);
616 test_2vi_off(a1, a2, true, true);
619 System.out.println("test_2vi_off: " + (end - start));
843 static void test_2vi_off(boolean[] a, boolean[] b, boolean c, boolean d) { method in class:TestBooleanVect
H A DTestShortVect.java78 test_2vi_off(a1, a2, (short)123, (short)103);
205 test_2vi_off(a1, a2, (short)123, (short)103);
207 errn += verify("test_2vi_off: a1", i, a1[i], (short)123);
208 errn += verify("test_2vi_off: a2", i, a2[i], (short)103);
211 errn += verify("test_2vi_off: a1", i, a1[i], (short)-1);
212 errn += verify("test_2vi_off: a2", i, a2[i], (short)-1);
617 test_2vi_off(a1, a2, (short)123, (short)103);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(short[] a, short[] b, short c, short d) { method in class:TestShortVect
H A DTestCharVect.java78 test_2vi_off(a1, a2, (char)123, (char)103);
205 test_2vi_off(a1, a2, (char)123, (char)103);
207 errn += verify("test_2vi_off: a1", i, a1[i], (char)123);
208 errn += verify("test_2vi_off: a2", i, a2[i], (char)103);
211 errn += verify("test_2vi_off: a1", i, a1[i], (char)-1);
212 errn += verify("test_2vi_off: a2", i, a2[i], (char)-1);
617 test_2vi_off(a1, a2, (char)123, (char)103);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(char[] a, char[] b, char c, char d) { method in class:TestCharVect
H A DTestByteVect.java78 test_2vi_off(a1, a2, (byte)123, (byte)103);
205 test_2vi_off(a1, a2, (byte)123, (byte)103);
207 errn += verify("test_2vi_off: a1", i, a1[i], (byte)123);
208 errn += verify("test_2vi_off: a2", i, a2[i], (byte)103);
211 errn += verify("test_2vi_off: a1", i, a1[i], (byte)-1);
212 errn += verify("test_2vi_off: a2", i, a2[i], (byte)-1);
617 test_2vi_off(a1, a2, (byte)123, (byte)103);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(byte[] a, byte[] b, byte c, byte d) { method in class:TestByteVect
H A DTestDoubleVect.java78 test_2vi_off(a1, a2, 123., 103.);
205 test_2vi_off(a1, a2, 123., 103.);
207 errn += verify("test_2vi_off: a1", i, a1[i], 123.);
208 errn += verify("test_2vi_off: a2", i, a2[i], 103.);
211 errn += verify("test_2vi_off: a1", i, a1[i], -1.);
212 errn += verify("test_2vi_off: a2", i, a2[i], -1.);
617 test_2vi_off(a1, a2, 123., 103.);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(double[] a, double[] b, double c, double d) { method in class:TestDoubleVect
H A DTestLongVect.java78 test_2vi_off(a1, a2, (long)123, (long)103);
205 test_2vi_off(a1, a2, (long)123, (long)103);
207 errn += verify("test_2vi_off: a1", i, a1[i], (long)123);
208 errn += verify("test_2vi_off: a2", i, a2[i], (long)103);
211 errn += verify("test_2vi_off: a1", i, a1[i], (long)-1);
212 errn += verify("test_2vi_off: a2", i, a2[i], (long)-1);
617 test_2vi_off(a1, a2, (long)123, (long)103);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(long[] a, long[] b, long c, long d) { method in class:TestLongVect
H A DTestIntVect.java78 test_2vi_off(a1, a2, (int)123, (int)103);
205 test_2vi_off(a1, a2, (int)123, (int)103);
207 errn += verify("test_2vi_off: a1", i, a1[i], (int)123);
208 errn += verify("test_2vi_off: a2", i, a2[i], (int)103);
211 errn += verify("test_2vi_off: a1", i, a1[i], (int)-1);
212 errn += verify("test_2vi_off: a2", i, a2[i], (int)-1);
617 test_2vi_off(a1, a2, (int)123, (int)103);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntVect
H A DTestFloatVect.java78 test_2vi_off(a1, a2, 123.f, 103.f);
205 test_2vi_off(a1, a2, 123.f, 103.f);
207 errn += verify("test_2vi_off: a1", i, a1[i], 123.f);
208 errn += verify("test_2vi_off: a2", i, a2[i], 103.f);
211 errn += verify("test_2vi_off: a1", i, a1[i], -1.f);
212 errn += verify("test_2vi_off: a2", i, a2[i], -1.f);
617 test_2vi_off(a1, a2, 123.f, 103.f);
620 System.out.println("test_2vi_off: " + (end - start));
844 static void test_2vi_off(float[] a, float[] b, float c, float d) { method in class:TestFloatVect
/openjdk9/hotspot/test/compiler/c2/cr8004867/
H A DTestIntUnsafeCAS.java103 test_2vi_off(a1, a2, 123, 103);
230 test_2vi_off(a1, a2, 123, 103);
232 errn += verify("test_2vi_off: a1", i, a1[i], 123);
233 errn += verify("test_2vi_off: a2", i, a2[i], 103);
236 errn += verify("test_2vi_off: a1", i, a1[i], -1);
237 errn += verify("test_2vi_off: a2", i, a2[i], -1);
650 test_2vi_off(a1, a2, 123, 103);
653 System.out.println("test_2vi_off: " + (end - start));
881 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeCAS
H A DTestIntUnsafeVolatile.java103 test_2vi_off(a1, a2, 123, 103);
230 test_2vi_off(a1, a2, 123, 103);
232 errn += verify("test_2vi_off: a1", i, a1[i], 123);
233 errn += verify("test_2vi_off: a2", i, a2[i], 103);
236 errn += verify("test_2vi_off: a1", i, a1[i], -1);
237 errn += verify("test_2vi_off: a2", i, a2[i], -1);
650 test_2vi_off(a1, a2, 123, 103);
653 System.out.println("test_2vi_off: " + (end - start));
881 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeVolatile
H A DTestIntUnsafeOrdered.java103 test_2vi_off(a1, a2, 123, 103);
230 test_2vi_off(a1, a2, 123, 103);
232 errn += verify("test_2vi_off: a1", i, a1[i], 123);
233 errn += verify("test_2vi_off: a2", i, a2[i], 103);
236 errn += verify("test_2vi_off: a1", i, a1[i], -1);
237 errn += verify("test_2vi_off: a2", i, a2[i], -1);
650 test_2vi_off(a1, a2, 123, 103);
653 System.out.println("test_2vi_off: " + (end - start));
881 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeOrdered
H A DTestIntAtomicCAS.java88 test_2vi_off(a1, a2, 123, 103);
215 test_2vi_off(a1, a2, 123, 103);
217 errn += verify("test_2vi_off: a1", i, a1.get(i), 123);
218 errn += verify("test_2vi_off: a2", i, a2.get(i), 103);
221 errn += verify("test_2vi_off: a1", i, a1.get(i), -1);
222 errn += verify("test_2vi_off: a2", i, a2.get(i), -1);
635 test_2vi_off(a1, a2, 123, 103);
638 System.out.println("test_2vi_off: " + (end - start));
862 static void test_2vi_off(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicCAS
H A DTestIntAtomicOrdered.java88 test_2vi_off(a1, a2, 123, 103);
215 test_2vi_off(a1, a2, 123, 103);
217 errn += verify("test_2vi_off: a1", i, a1.get(i), 123);
218 errn += verify("test_2vi_off: a2", i, a2.get(i), 103);
221 errn += verify("test_2vi_off: a1", i, a1.get(i), -1);
222 errn += verify("test_2vi_off: a2", i, a2.get(i), -1);
635 test_2vi_off(a1, a2, 123, 103);
638 System.out.println("test_2vi_off: " + (end - start));
862 static void test_2vi_off(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicOrdered
H A DTestIntAtomicVolatile.java88 test_2vi_off(a1, a2, 123, 103);
215 test_2vi_off(a1, a2, 123, 103);
217 errn += verify("test_2vi_off: a1", i, a1.get(i), 123);
218 errn += verify("test_2vi_off: a2", i, a2.get(i), 103);
221 errn += verify("test_2vi_off: a1", i, a1.get(i), -1);
222 errn += verify("test_2vi_off: a2", i, a2.get(i), -1);
635 test_2vi_off(a1, a2, 123, 103);
638 System.out.println("test_2vi_off: " + (end - start));
862 static void test_2vi_off(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicVolatile

Completed in 133 milliseconds