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

/openjdk7/hotspot/test/compiler/7119644/
H A DTestBooleanVect.java75 test_2vi_off(a1, a2, true, true);
202 test_2vi_off(a1, a2, true, true);
204 errn += verify("test_2vi_off: a1", i, a1[i], true);
205 errn += verify("test_2vi_off: a2", i, a2[i], true);
208 errn += verify("test_2vi_off: a1", i, a1[i], false);
209 errn += verify("test_2vi_off: a2", i, a2[i], false);
613 test_2vi_off(a1, a2, true, true);
616 System.out.println("test_2vi_off: " + (end - start));
840 static void test_2vi_off(boolean[] a, boolean[] b, boolean c, boolean d) { method in class:TestBooleanVect
H A DTestByteVect.java75 test_2vi_off(a1, a2, (byte)123, (byte)103);
202 test_2vi_off(a1, a2, (byte)123, (byte)103);
204 errn += verify("test_2vi_off: a1", i, a1[i], (byte)123);
205 errn += verify("test_2vi_off: a2", i, a2[i], (byte)103);
208 errn += verify("test_2vi_off: a1", i, a1[i], (byte)-1);
209 errn += verify("test_2vi_off: a2", i, a2[i], (byte)-1);
614 test_2vi_off(a1, a2, (byte)123, (byte)103);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(byte[] a, byte[] b, byte c, byte d) { method in class:TestByteVect
H A DTestCharVect.java75 test_2vi_off(a1, a2, (char)123, (char)103);
202 test_2vi_off(a1, a2, (char)123, (char)103);
204 errn += verify("test_2vi_off: a1", i, a1[i], (char)123);
205 errn += verify("test_2vi_off: a2", i, a2[i], (char)103);
208 errn += verify("test_2vi_off: a1", i, a1[i], (char)-1);
209 errn += verify("test_2vi_off: a2", i, a2[i], (char)-1);
614 test_2vi_off(a1, a2, (char)123, (char)103);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(char[] a, char[] b, char c, char d) { method in class:TestCharVect
H A DTestDoubleVect.java75 test_2vi_off(a1, a2, 123., 103.);
202 test_2vi_off(a1, a2, 123., 103.);
204 errn += verify("test_2vi_off: a1", i, a1[i], 123.);
205 errn += verify("test_2vi_off: a2", i, a2[i], 103.);
208 errn += verify("test_2vi_off: a1", i, a1[i], -1.);
209 errn += verify("test_2vi_off: a2", i, a2[i], -1.);
614 test_2vi_off(a1, a2, 123., 103.);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(double[] a, double[] b, double c, double d) { method in class:TestDoubleVect
H A DTestFloatVect.java75 test_2vi_off(a1, a2, 123.f, 103.f);
202 test_2vi_off(a1, a2, 123.f, 103.f);
204 errn += verify("test_2vi_off: a1", i, a1[i], 123.f);
205 errn += verify("test_2vi_off: a2", i, a2[i], 103.f);
208 errn += verify("test_2vi_off: a1", i, a1[i], -1.f);
209 errn += verify("test_2vi_off: a2", i, a2[i], -1.f);
614 test_2vi_off(a1, a2, 123.f, 103.f);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(float[] a, float[] b, float c, float d) { method in class:TestFloatVect
H A DTestIntVect.java75 test_2vi_off(a1, a2, (int)123, (int)103);
202 test_2vi_off(a1, a2, (int)123, (int)103);
204 errn += verify("test_2vi_off: a1", i, a1[i], (int)123);
205 errn += verify("test_2vi_off: a2", i, a2[i], (int)103);
208 errn += verify("test_2vi_off: a1", i, a1[i], (int)-1);
209 errn += verify("test_2vi_off: a2", i, a2[i], (int)-1);
614 test_2vi_off(a1, a2, (int)123, (int)103);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntVect
H A DTestLongVect.java75 test_2vi_off(a1, a2, (long)123, (long)103);
202 test_2vi_off(a1, a2, (long)123, (long)103);
204 errn += verify("test_2vi_off: a1", i, a1[i], (long)123);
205 errn += verify("test_2vi_off: a2", i, a2[i], (long)103);
208 errn += verify("test_2vi_off: a1", i, a1[i], (long)-1);
209 errn += verify("test_2vi_off: a2", i, a2[i], (long)-1);
614 test_2vi_off(a1, a2, (long)123, (long)103);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(long[] a, long[] b, long c, long d) { method in class:TestLongVect
H A DTestShortVect.java75 test_2vi_off(a1, a2, (short)123, (short)103);
202 test_2vi_off(a1, a2, (short)123, (short)103);
204 errn += verify("test_2vi_off: a1", i, a1[i], (short)123);
205 errn += verify("test_2vi_off: a2", i, a2[i], (short)103);
208 errn += verify("test_2vi_off: a1", i, a1[i], (short)-1);
209 errn += verify("test_2vi_off: a2", i, a2[i], (short)-1);
614 test_2vi_off(a1, a2, (short)123, (short)103);
617 System.out.println("test_2vi_off: " + (end - start));
841 static void test_2vi_off(short[] a, short[] b, short c, short d) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java83 test_2vi_off(a1, a2, 123, 103);
210 test_2vi_off(a1, a2, 123, 103);
212 errn += verify("test_2vi_off: a1", i, a1.get(i), 123);
213 errn += verify("test_2vi_off: a2", i, a2.get(i), 103);
216 errn += verify("test_2vi_off: a1", i, a1.get(i), -1);
217 errn += verify("test_2vi_off: a2", i, a2.get(i), -1);
630 test_2vi_off(a1, a2, 123, 103);
633 System.out.println("test_2vi_off: " + (end - start));
857 static void test_2vi_off(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicCAS
H A DTestIntAtomicOrdered.java83 test_2vi_off(a1, a2, 123, 103);
210 test_2vi_off(a1, a2, 123, 103);
212 errn += verify("test_2vi_off: a1", i, a1.get(i), 123);
213 errn += verify("test_2vi_off: a2", i, a2.get(i), 103);
216 errn += verify("test_2vi_off: a1", i, a1.get(i), -1);
217 errn += verify("test_2vi_off: a2", i, a2.get(i), -1);
630 test_2vi_off(a1, a2, 123, 103);
633 System.out.println("test_2vi_off: " + (end - start));
857 static void test_2vi_off(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicOrdered
H A DTestIntAtomicVolatile.java83 test_2vi_off(a1, a2, 123, 103);
210 test_2vi_off(a1, a2, 123, 103);
212 errn += verify("test_2vi_off: a1", i, a1.get(i), 123);
213 errn += verify("test_2vi_off: a2", i, a2.get(i), 103);
216 errn += verify("test_2vi_off: a1", i, a1.get(i), -1);
217 errn += verify("test_2vi_off: a2", i, a2.get(i), -1);
630 test_2vi_off(a1, a2, 123, 103);
633 System.out.println("test_2vi_off: " + (end - start));
857 static void test_2vi_off(AtomicIntegerArray a, AtomicIntegerArray b, int c, int d) { method in class:TestIntAtomicVolatile
H A DTestIntUnsafeCAS.java100 test_2vi_off(a1, a2, 123, 103);
227 test_2vi_off(a1, a2, 123, 103);
229 errn += verify("test_2vi_off: a1", i, a1[i], 123);
230 errn += verify("test_2vi_off: a2", i, a2[i], 103);
233 errn += verify("test_2vi_off: a1", i, a1[i], -1);
234 errn += verify("test_2vi_off: a2", i, a2[i], -1);
647 test_2vi_off(a1, a2, 123, 103);
650 System.out.println("test_2vi_off: " + (end - start));
878 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeCAS
H A DTestIntUnsafeOrdered.java100 test_2vi_off(a1, a2, 123, 103);
227 test_2vi_off(a1, a2, 123, 103);
229 errn += verify("test_2vi_off: a1", i, a1[i], 123);
230 errn += verify("test_2vi_off: a2", i, a2[i], 103);
233 errn += verify("test_2vi_off: a1", i, a1[i], -1);
234 errn += verify("test_2vi_off: a2", i, a2[i], -1);
647 test_2vi_off(a1, a2, 123, 103);
650 System.out.println("test_2vi_off: " + (end - start));
878 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeOrdered
H A DTestIntUnsafeVolatile.java100 test_2vi_off(a1, a2, 123, 103);
227 test_2vi_off(a1, a2, 123, 103);
229 errn += verify("test_2vi_off: a1", i, a1[i], 123);
230 errn += verify("test_2vi_off: a2", i, a2[i], 103);
233 errn += verify("test_2vi_off: a1", i, a1[i], -1);
234 errn += verify("test_2vi_off: a2", i, a2[i], -1);
647 test_2vi_off(a1, a2, 123, 103);
650 System.out.println("test_2vi_off: " + (end - start));
878 static void test_2vi_off(int[] a, int[] b, int c, int d) { method in class:TestIntUnsafeVolatile

Completed in 160 milliseconds