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

12

/openjdk7/hotspot/test/compiler/7119644/
H A DTestByteDoubleVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(byte[] a, double[] b) { method in class:TestByteDoubleVect
H A DTestByteFloatVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.f);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(byte[] a, float[] b) { method in class:TestByteFloatVect
H A DTestByteIntVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
90 errn += verify("test_ci: b1", i, b1[i], (int)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(byte[] a, int[] b) { method in class:TestByteIntVect
H A DTestByteLongVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
90 errn += verify("test_ci: b1", i, b1[i], (long)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(byte[] a, long[] b) { method in class:TestByteLongVect
H A DTestByteShortVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
90 errn += verify("test_ci: b1", i, b1[i], (short)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(byte[] a, short[] b) { method in class:TestByteShortVect
H A DTestCharShortVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (char)-123);
90 errn += verify("test_ci: b1", i, b1[i], (short)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(char[] a, short[] b) { method in class:TestCharShortVect
H A DTestFloatDoubleVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], -123.f);
90 errn += verify("test_ci: b1", i, b1[i], -103.);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(float[] a, double[] b) { method in class:TestFloatDoubleVect
H A DTestIntDoubleVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (int)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(int[] a, double[] b) { method in class:TestIntDoubleVect
H A DTestIntFloatVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (int)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.f);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(int[] a, float[] b) { method in class:TestIntFloatVect
H A DTestIntLongVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (int)-123);
90 errn += verify("test_ci: b1", i, b1[i], (long)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(int[] a, long[] b) { method in class:TestIntLongVect
H A DTestLongDoubleVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (long)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(long[] a, double[] b) { method in class:TestLongDoubleVect
H A DTestLongFloatVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (long)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.f);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(long[] a, float[] b) { method in class:TestLongFloatVect
H A DTestShortDoubleVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (short)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(short[] a, double[] b) { method in class:TestShortDoubleVect
H A DTestShortFloatVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (short)-123);
90 errn += verify("test_ci: b1", i, b1[i], -103.f);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(short[] a, float[] b) { method in class:TestShortFloatVect
H A DTestShortIntVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (short)-123);
90 errn += verify("test_ci: b1", i, b1[i], (int)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(short[] a, int[] b) { method in class:TestShortIntVect
H A DTestShortLongVect.java58 test_ci(a1, b1);
87 test_ci(a1, b1);
89 errn += verify("test_ci: a1", i, a1[i], (short)-123);
90 errn += verify("test_ci: b1", i, b1[i], (long)-103);
348 test_ci(a1, b1);
351 System.out.println("test_ci: " + (end - start));
451 static void test_ci(short[] a, long[] b) { method in class:TestShortLongVect
H A DTestBooleanVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], false);
496 test_ci(a1);
499 System.out.println("test_ci: " + (end - start));
733 static void test_ci(boolean[] a) { method in class:TestBooleanVect
H A DTestByteVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(byte[] a) { method in class:TestByteVect
H A DTestCharVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], (char)-123);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(char[] a) { method in class:TestCharVect
H A DTestDoubleVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], -123.);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(double[] a) { method in class:TestDoubleVect
H A DTestFloatVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], -123.f);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(float[] a) { method in class:TestFloatVect
H A DTestIntVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], (int)-123);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(int[] a) { method in class:TestIntVect
H A DTestLongVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], (long)-123);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(long[] a) { method in class:TestLongVect
H A DTestShortVect.java56 test_ci(a1);
104 test_ci(a1);
106 errn += verify("test_ci: a1", i, a1[i], (short)-123);
497 test_ci(a1);
500 System.out.println("test_ci: " + (end - start));
734 static void test_ci(short[] a) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java64 test_ci(a1);
112 test_ci(a1);
114 errn += verify("test_ci: a1", i, a1.get(i), -123);
513 test_ci(a1);
516 System.out.println("test_ci: " + (end - start));
750 static void test_ci(AtomicIntegerArray a) { method in class:TestIntAtomicCAS

Completed in 97 milliseconds

12