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

/openjdk7/hotspot/test/compiler/7119644/
H A DTestBooleanVect.java72 test_vi_off(a2, true);
189 test_vi_off(a2, true);
191 errn += verify("test_vi_off: a2", i, a2[i], true);
595 test_vi_off(a2, true);
598 System.out.println("test_vi_off: " + (end - start));
824 static void test_vi_off(boolean[] a, boolean b) { method in class:TestBooleanVect
H A DTestByteVect.java72 test_vi_off(a2, (byte)123);
189 test_vi_off(a2, (byte)123);
191 errn += verify("test_vi_off: a2", i, a2[i], (byte)123);
596 test_vi_off(a2, (byte)123);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(byte[] a, byte b) { method in class:TestByteVect
H A DTestCharVect.java72 test_vi_off(a2, (char)123);
189 test_vi_off(a2, (char)123);
191 errn += verify("test_vi_off: a2", i, a2[i], (char)123);
596 test_vi_off(a2, (char)123);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(char[] a, char b) { method in class:TestCharVect
H A DTestDoubleVect.java72 test_vi_off(a2, 123.);
189 test_vi_off(a2, 123.);
191 errn += verify("test_vi_off: a2", i, a2[i], 123.);
596 test_vi_off(a2, 123.);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(double[] a, double b) { method in class:TestDoubleVect
H A DTestFloatVect.java72 test_vi_off(a2, 123.f);
189 test_vi_off(a2, 123.f);
191 errn += verify("test_vi_off: a2", i, a2[i], 123.f);
596 test_vi_off(a2, 123.f);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(float[] a, float b) { method in class:TestFloatVect
H A DTestIntVect.java72 test_vi_off(a2, (int)123);
189 test_vi_off(a2, (int)123);
191 errn += verify("test_vi_off: a2", i, a2[i], (int)123);
596 test_vi_off(a2, (int)123);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(int[] a, int b) { method in class:TestIntVect
H A DTestLongVect.java72 test_vi_off(a2, (long)123);
189 test_vi_off(a2, (long)123);
191 errn += verify("test_vi_off: a2", i, a2[i], (long)123);
596 test_vi_off(a2, (long)123);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(long[] a, long b) { method in class:TestLongVect
H A DTestShortVect.java72 test_vi_off(a2, (short)123);
189 test_vi_off(a2, (short)123);
191 errn += verify("test_vi_off: a2", i, a2[i], (short)123);
596 test_vi_off(a2, (short)123);
599 System.out.println("test_vi_off: " + (end - start));
825 static void test_vi_off(short[] a, short b) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java80 test_vi_off(a2, 123, 103);
197 test_vi_off(a2, 123, -1);
199 errn += verify("test_vi_off: a2", i, a2.get(i), 123);
612 test_vi_off(a2, 123, 103);
615 System.out.println("test_vi_off: " + (end - start));
841 static void test_vi_off(AtomicIntegerArray a, int b, int old) { method in class:TestIntAtomicCAS
H A DTestIntAtomicOrdered.java80 test_vi_off(a2, 123, 103);
197 test_vi_off(a2, 123, -1);
199 errn += verify("test_vi_off: a2", i, a2.get(i), 123);
612 test_vi_off(a2, 123, 103);
615 System.out.println("test_vi_off: " + (end - start));
841 static void test_vi_off(AtomicIntegerArray a, int b, int old) { method in class:TestIntAtomicOrdered
H A DTestIntAtomicVolatile.java80 test_vi_off(a2, 123, 103);
197 test_vi_off(a2, 123, -1);
199 errn += verify("test_vi_off: a2", i, a2.get(i), 123);
612 test_vi_off(a2, 123, 103);
615 System.out.println("test_vi_off: " + (end - start));
841 static void test_vi_off(AtomicIntegerArray a, int b, int old) { method in class:TestIntAtomicVolatile
H A DTestIntUnsafeCAS.java97 test_vi_off(a2, 123, 103);
214 test_vi_off(a2, 123, -1);
216 errn += verify("test_vi_off: a2", i, a2[i], 123);
629 test_vi_off(a2, 123, 103);
632 System.out.println("test_vi_off: " + (end - start));
862 static void test_vi_off(int[] a, int b, int old) { method in class:TestIntUnsafeCAS
H A DTestIntUnsafeOrdered.java97 test_vi_off(a2, 123, 103);
214 test_vi_off(a2, 123, -1);
216 errn += verify("test_vi_off: a2", i, a2[i], 123);
629 test_vi_off(a2, 123, 103);
632 System.out.println("test_vi_off: " + (end - start));
862 static void test_vi_off(int[] a, int b, int old) { method in class:TestIntUnsafeOrdered
H A DTestIntUnsafeVolatile.java97 test_vi_off(a2, 123, 103);
214 test_vi_off(a2, 123, -1);
216 errn += verify("test_vi_off: a2", i, a2[i], 123);
629 test_vi_off(a2, 123, 103);
632 System.out.println("test_vi_off: " + (end - start));
862 static void test_vi_off(int[] a, int b, int old) { method in class:TestIntUnsafeVolatile

Completed in 354 milliseconds