Searched defs:test_vi (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/hotspot/test/compiler/7119644/
H A DTestByteDoubleVect.java59 test_vi(a2, b2, (byte)123, 103.);
92 test_vi(a2, b2, (byte)123, 103.);
94 errn += verify("test_vi: a2", i, a2[i], (byte)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.);
354 test_vi(a2, b2, (byte)123, 103.);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(byte[] a, double[] b, byte c, double d) { method in class:TestByteDoubleVect
H A DTestByteFloatVect.java59 test_vi(a2, b2, (byte)123, 103.f);
92 test_vi(a2, b2, (byte)123, 103.f);
94 errn += verify("test_vi: a2", i, a2[i], (byte)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.f);
354 test_vi(a2, b2, (byte)123, 103.f);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(byte[] a, float[] b, byte c, float d) { method in class:TestByteFloatVect
H A DTestByteIntVect.java59 test_vi(a2, b2, (byte)123, (int)103);
92 test_vi(a2, b2, (byte)123, (int)103);
94 errn += verify("test_vi: a2", i, a2[i], (byte)123);
95 errn += verify("test_vi: b2", i, b2[i], (int)103);
354 test_vi(a2, b2, (byte)123, (int)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(byte[] a, int[] b, byte c, int d) { method in class:TestByteIntVect
H A DTestByteLongVect.java59 test_vi(a2, b2, (byte)123, (long)103);
92 test_vi(a2, b2, (byte)123, (long)103);
94 errn += verify("test_vi: a2", i, a2[i], (byte)123);
95 errn += verify("test_vi: b2", i, b2[i], (long)103);
354 test_vi(a2, b2, (byte)123, (long)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(byte[] a, long[] b, byte c, long d) { method in class:TestByteLongVect
H A DTestByteShortVect.java59 test_vi(a2, b2, (byte)123, (short)103);
92 test_vi(a2, b2, (byte)123, (short)103);
94 errn += verify("test_vi: a2", i, a2[i], (byte)123);
95 errn += verify("test_vi: b2", i, b2[i], (short)103);
354 test_vi(a2, b2, (byte)123, (short)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(byte[] a, short[] b, byte c, short d) { method in class:TestByteShortVect
H A DTestCharShortVect.java59 test_vi(a2, b2, (char)123, (short)103);
92 test_vi(a2, b2, (char)123, (short)103);
94 errn += verify("test_vi: a2", i, a2[i], (char)123);
95 errn += verify("test_vi: b2", i, b2[i], (short)103);
354 test_vi(a2, b2, (char)123, (short)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(char[] a, short[] b, char c, short d) { method in class:TestCharShortVect
H A DTestFloatDoubleVect.java59 test_vi(a2, b2, 123.f, 103.);
92 test_vi(a2, b2, 123.f, 103.);
94 errn += verify("test_vi: a2", i, a2[i], 123.f);
95 errn += verify("test_vi: b2", i, b2[i], 103.);
354 test_vi(a2, b2, 123.f, 103.);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(float[] a, double[] b, float c, double d) { method in class:TestFloatDoubleVect
H A DTestIntDoubleVect.java59 test_vi(a2, b2, (int)123, 103.);
92 test_vi(a2, b2, (int)123, 103.);
94 errn += verify("test_vi: a2", i, a2[i], (int)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.);
354 test_vi(a2, b2, (int)123, 103.);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(int[] a, double[] b, int c, double d) { method in class:TestIntDoubleVect
H A DTestIntFloatVect.java59 test_vi(a2, b2, (int)123, 103.f);
92 test_vi(a2, b2, (int)123, 103.f);
94 errn += verify("test_vi: a2", i, a2[i], (int)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.f);
354 test_vi(a2, b2, (int)123, 103.f);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(int[] a, float[] b, int c, float d) { method in class:TestIntFloatVect
H A DTestIntLongVect.java59 test_vi(a2, b2, (int)123, (long)103);
92 test_vi(a2, b2, (int)123, (long)103);
94 errn += verify("test_vi: a2", i, a2[i], (int)123);
95 errn += verify("test_vi: b2", i, b2[i], (long)103);
354 test_vi(a2, b2, (int)123, (long)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(int[] a, long[] b, int c, long d) { method in class:TestIntLongVect
H A DTestLongDoubleVect.java59 test_vi(a2, b2, (long)123, 103.);
92 test_vi(a2, b2, (long)123, 103.);
94 errn += verify("test_vi: a2", i, a2[i], (long)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.);
354 test_vi(a2, b2, (long)123, 103.);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(long[] a, double[] b, long c, double d) { method in class:TestLongDoubleVect
H A DTestLongFloatVect.java59 test_vi(a2, b2, (long)123, 103.f);
92 test_vi(a2, b2, (long)123, 103.f);
94 errn += verify("test_vi: a2", i, a2[i], (long)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.f);
354 test_vi(a2, b2, (long)123, 103.f);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(long[] a, float[] b, long c, float d) { method in class:TestLongFloatVect
H A DTestShortDoubleVect.java59 test_vi(a2, b2, (short)123, 103.);
92 test_vi(a2, b2, (short)123, 103.);
94 errn += verify("test_vi: a2", i, a2[i], (short)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.);
354 test_vi(a2, b2, (short)123, 103.);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(short[] a, double[] b, short c, double d) { method in class:TestShortDoubleVect
H A DTestShortFloatVect.java59 test_vi(a2, b2, (short)123, 103.f);
92 test_vi(a2, b2, (short)123, 103.f);
94 errn += verify("test_vi: a2", i, a2[i], (short)123);
95 errn += verify("test_vi: b2", i, b2[i], 103.f);
354 test_vi(a2, b2, (short)123, 103.f);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(short[] a, float[] b, short c, float d) { method in class:TestShortFloatVect
H A DTestShortIntVect.java59 test_vi(a2, b2, (short)123, (int)103);
92 test_vi(a2, b2, (short)123, (int)103);
94 errn += verify("test_vi: a2", i, a2[i], (short)123);
95 errn += verify("test_vi: b2", i, b2[i], (int)103);
354 test_vi(a2, b2, (short)123, (int)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(short[] a, int[] b, short c, int d) { method in class:TestShortIntVect
H A DTestShortLongVect.java59 test_vi(a2, b2, (short)123, (long)103);
92 test_vi(a2, b2, (short)123, (long)103);
94 errn += verify("test_vi: a2", i, a2[i], (short)123);
95 errn += verify("test_vi: b2", i, b2[i], (long)103);
354 test_vi(a2, b2, (short)123, (long)103);
357 System.out.println("test_vi: " + (end - start));
457 static void test_vi(short[] a, long[] b, short c, long d) { method in class:TestShortLongVect
H A DTestBooleanVect.java57 test_vi(a2, true);
108 test_vi(a2, true);
110 errn += verify("test_vi: a2", i, a2[i], true);
292 test_vi(a2, true);
300 test_vi(a2, false);
348 test_vi(a2, true);
356 test_vi(a2, false);
502 test_vi(a2, true);
505 System.out.println("test_vi: " + (end - start));
738 static void test_vi(boolea method in class:TestBooleanVect
[all...]
H A DTestByteVect.java57 test_vi(a2, (byte)123);
108 test_vi(a2, (byte)123);
110 errn += verify("test_vi: a2", i, a2[i], (byte)123);
293 test_vi(a2, (byte)123);
301 test_vi(a2, (byte)-123);
349 test_vi(a2, (byte)123);
357 test_vi(a2, (byte)-123);
503 test_vi(a2, (byte)123);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(byt method in class:TestByteVect
[all...]
H A DTestCharVect.java57 test_vi(a2, (char)123);
108 test_vi(a2, (char)123);
110 errn += verify("test_vi: a2", i, a2[i], (char)123);
293 test_vi(a2, (char)123);
301 test_vi(a2, (char)-123);
349 test_vi(a2, (char)123);
357 test_vi(a2, (char)-123);
503 test_vi(a2, (char)123);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(cha method in class:TestCharVect
[all...]
H A DTestDoubleVect.java57 test_vi(a2, 123.);
108 test_vi(a2, 123.);
110 errn += verify("test_vi: a2", i, a2[i], 123.);
293 test_vi(a2, 123.);
301 test_vi(a2, -123.);
349 test_vi(a2, 123.);
357 test_vi(a2, -123.);
503 test_vi(a2, 123.);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(doubl method in class:TestDoubleVect
[all...]
H A DTestFloatVect.java57 test_vi(a2, 123.f);
108 test_vi(a2, 123.f);
110 errn += verify("test_vi: a2", i, a2[i], 123.f);
293 test_vi(a2, 123.f);
301 test_vi(a2, -123.f);
349 test_vi(a2, 123.f);
357 test_vi(a2, -123.f);
503 test_vi(a2, 123.f);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(floa method in class:TestFloatVect
[all...]
H A DTestIntVect.java57 test_vi(a2, (int)123);
108 test_vi(a2, (int)123);
110 errn += verify("test_vi: a2", i, a2[i], (int)123);
293 test_vi(a2, (int)123);
301 test_vi(a2, (int)-123);
349 test_vi(a2, (int)123);
357 test_vi(a2, (int)-123);
503 test_vi(a2, (int)123);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(in method in class:TestIntVect
[all...]
H A DTestLongVect.java57 test_vi(a2, (long)123);
108 test_vi(a2, (long)123);
110 errn += verify("test_vi: a2", i, a2[i], (long)123);
293 test_vi(a2, (long)123);
301 test_vi(a2, (long)-123);
349 test_vi(a2, (long)123);
357 test_vi(a2, (long)-123);
503 test_vi(a2, (long)123);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(lon method in class:TestLongVect
[all...]
H A DTestShortVect.java57 test_vi(a2, (short)123);
108 test_vi(a2, (short)123);
110 errn += verify("test_vi: a2", i, a2[i], (short)123);
293 test_vi(a2, (short)123);
301 test_vi(a2, (short)-123);
349 test_vi(a2, (short)123);
357 test_vi(a2, (short)-123);
503 test_vi(a2, (short)123);
506 System.out.println("test_vi: " + (end - start));
739 static void test_vi(shor method in class:TestShortVect
[all...]
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java65 test_vi(a2, 123, -1);
116 test_vi(a2, 123, -1);
118 errn += verify("test_vi: a2", i, a2.get(i), 123);
301 test_vi(a2, 123, -1);
312 test_vi(a2, -123, 123);
360 test_vi(a2, 123, -1);
368 test_vi(a2, -123, 123);
519 test_vi(a2, 123, -1);
522 System.out.println("test_vi: " + (end - start));
755 static void test_vi(AtomicIntegerArra method in class:TestIntAtomicCAS
[all...]

Completed in 97 milliseconds

12