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

/openjdk7/hotspot/test/compiler/7119644/
H A DTestBooleanVect.java60 test_2vi(a1, a2, true, true);
121 test_2vi(a1, a2, true, true);
123 errn += verify("test_2vi: a1", i, a1[i], true);
124 errn += verify("test_2vi: a2", i, a2[i], true);
520 test_2vi(a1, a2, true, true);
523 System.out.println("test_2vi: " + (end - start));
754 static void test_2vi(boolean[] a, boolean[] b, boolean c, boolean d) { method in class:TestBooleanVect
H A DTestByteVect.java60 test_2vi(a1, a2, (byte)123, (byte)103);
121 test_2vi(a1, a2, (byte)123, (byte)103);
123 errn += verify("test_2vi: a1", i, a1[i], (byte)123);
124 errn += verify("test_2vi: a2", i, a2[i], (byte)103);
521 test_2vi(a1, a2, (byte)123, (byte)103);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(byte[] a, byte[] b, byte c, byte d) { method in class:TestByteVect
H A DTestCharVect.java60 test_2vi(a1, a2, (char)123, (char)103);
121 test_2vi(a1, a2, (char)123, (char)103);
123 errn += verify("test_2vi: a1", i, a1[i], (char)123);
124 errn += verify("test_2vi: a2", i, a2[i], (char)103);
521 test_2vi(a1, a2, (char)123, (char)103);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(char[] a, char[] b, char c, char d) { method in class:TestCharVect
H A DTestDoubleVect.java60 test_2vi(a1, a2, 123., 103.);
121 test_2vi(a1, a2, 123., 103.);
123 errn += verify("test_2vi: a1", i, a1[i], 123.);
124 errn += verify("test_2vi: a2", i, a2[i], 103.);
521 test_2vi(a1, a2, 123., 103.);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(double[] a, double[] b, double c, double d) { method in class:TestDoubleVect
H A DTestFloatVect.java60 test_2vi(a1, a2, 123.f, 103.f);
121 test_2vi(a1, a2, 123.f, 103.f);
123 errn += verify("test_2vi: a1", i, a1[i], 123.f);
124 errn += verify("test_2vi: a2", i, a2[i], 103.f);
521 test_2vi(a1, a2, 123.f, 103.f);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(float[] a, float[] b, float c, float d) { method in class:TestFloatVect
H A DTestIntVect.java60 test_2vi(a1, a2, (int)123, (int)103);
121 test_2vi(a1, a2, (int)123, (int)103);
123 errn += verify("test_2vi: a1", i, a1[i], (int)123);
124 errn += verify("test_2vi: a2", i, a2[i], (int)103);
521 test_2vi(a1, a2, (int)123, (int)103);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(int[] a, int[] b, int c, int d) { method in class:TestIntVect
H A DTestLongVect.java60 test_2vi(a1, a2, (long)123, (long)103);
121 test_2vi(a1, a2, (long)123, (long)103);
123 errn += verify("test_2vi: a1", i, a1[i], (long)123);
124 errn += verify("test_2vi: a2", i, a2[i], (long)103);
521 test_2vi(a1, a2, (long)123, (long)103);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(long[] a, long[] b, long c, long d) { method in class:TestLongVect
H A DTestShortVect.java60 test_2vi(a1, a2, (short)123, (short)103);
121 test_2vi(a1, a2, (short)123, (short)103);
123 errn += verify("test_2vi: a1", i, a1[i], (short)123);
124 errn += verify("test_2vi: a2", i, a2[i], (short)103);
521 test_2vi(a1, a2, (short)123, (short)103);
524 System.out.println("test_2vi: " + (end - start));
755 static void test_2vi(short[] a, short[] b, short c, short d) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java68 test_2vi(a1, a2, 123, 103);
129 test_2vi(a1, a2, 123, 103);
131 errn += verify("test_2vi: a1", i, a1.get(i), 123);
132 errn += verify("test_2vi: a2", i, a2.get(i), 103);
537 test_2vi(a1, a2, 123, 103);
540 System.out.println("test_2vi: " + (end - start));
771 static void test_2vi(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicCAS
H A DTestIntAtomicOrdered.java68 test_2vi(a1, a2, 123, 103);
129 test_2vi(a1, a2, 123, 103);
131 errn += verify("test_2vi: a1", i, a1.get(i), 123);
132 errn += verify("test_2vi: a2", i, a2.get(i), 103);
537 test_2vi(a1, a2, 123, 103);
540 System.out.println("test_2vi: " + (end - start));
771 static void test_2vi(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicOrdered
H A DTestIntAtomicVolatile.java68 test_2vi(a1, a2, 123, 103);
129 test_2vi(a1, a2, 123, 103);
131 errn += verify("test_2vi: a1", i, a1.get(i), 123);
132 errn += verify("test_2vi: a2", i, a2.get(i), 103);
537 test_2vi(a1, a2, 123, 103);
540 System.out.println("test_2vi: " + (end - start));
771 static void test_2vi(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicVolatile
H A DTestIntUnsafeCAS.java85 test_2vi(a1, a2, 123, 103);
146 test_2vi(a1, a2, 123, 103);
148 errn += verify("test_2vi: a1", i, a1[i], 123);
149 errn += verify("test_2vi: a2", i, a2[i], 103);
554 test_2vi(a1, a2, 123, 103);
557 System.out.println("test_2vi: " + (end - start));
792 static void test_2vi(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeCAS
H A DTestIntUnsafeOrdered.java85 test_2vi(a1, a2, 123, 103);
146 test_2vi(a1, a2, 123, 103);
148 errn += verify("test_2vi: a1", i, a1[i], 123);
149 errn += verify("test_2vi: a2", i, a2[i], 103);
554 test_2vi(a1, a2, 123, 103);
557 System.out.println("test_2vi: " + (end - start));
792 static void test_2vi(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeOrdered
H A DTestIntUnsafeVolatile.java85 test_2vi(a1, a2, 123, 103);
146 test_2vi(a1, a2, 123, 103);
148 errn += verify("test_2vi: a1", i, a1[i], 123);
149 errn += verify("test_2vi: a2", i, a2[i], 103);
554 test_2vi(a1, a2, 123, 103);
557 System.out.println("test_2vi: " + (end - start));
792 static void test_2vi(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeVolatile

Completed in 161 milliseconds