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

12

/openjdk9/hotspot/test/compiler/codegen/
H A DTestByteFloatVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.f);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(byte[] a, float[] b) { method in class:TestByteFloatVect
H A DTestByteDoubleVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(byte[] a, double[] b) { method in class:TestByteDoubleVect
H A DTestByteIntVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
93 errn += verify("test_ci: b1", i, b1[i], (int)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(byte[] a, int[] b) { method in class:TestByteIntVect
H A DTestShortLongVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (short)-123);
93 errn += verify("test_ci: b1", i, b1[i], (long)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(short[] a, long[] b) { method in class:TestShortLongVect
H A DTestShortIntVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (short)-123);
93 errn += verify("test_ci: b1", i, b1[i], (int)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(short[] a, int[] b) { method in class:TestShortIntVect
H A DTestFloatDoubleVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], -123.f);
93 errn += verify("test_ci: b1", i, b1[i], -103.);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(float[] a, double[] b) { method in class:TestFloatDoubleVect
H A DTestCharShortVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (char)-123);
93 errn += verify("test_ci: b1", i, b1[i], (short)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(char[] a, short[] b) { method in class:TestCharShortVect
H A DTestByteShortVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
93 errn += verify("test_ci: b1", i, b1[i], (short)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(byte[] a, short[] b) { method in class:TestByteShortVect
H A DTestByteLongVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
93 errn += verify("test_ci: b1", i, b1[i], (long)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(byte[] a, long[] b) { method in class:TestByteLongVect
H A DTestIntFloatVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (int)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.f);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(int[] a, float[] b) { method in class:TestIntFloatVect
H A DTestShortFloatVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (short)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.f);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(short[] a, float[] b) { method in class:TestShortFloatVect
H A DTestLongFloatVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (long)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.f);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(long[] a, float[] b) { method in class:TestLongFloatVect
H A DTestIntDoubleVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (int)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(int[] a, double[] b) { method in class:TestIntDoubleVect
H A DTestShortDoubleVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (short)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(short[] a, double[] b) { method in class:TestShortDoubleVect
H A DTestLongDoubleVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (long)-123);
93 errn += verify("test_ci: b1", i, b1[i], -103.);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(long[] a, double[] b) { method in class:TestLongDoubleVect
H A DTestIntLongVect.java61 test_ci(a1, b1);
90 test_ci(a1, b1);
92 errn += verify("test_ci: a1", i, a1[i], (int)-123);
93 errn += verify("test_ci: b1", i, b1[i], (long)-103);
351 test_ci(a1, b1);
354 System.out.println("test_ci: " + (end - start));
454 static void test_ci(int[] a, long[] b) { method in class:TestIntLongVect
H A DTestBooleanVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], false);
499 test_ci(a1);
502 System.out.println("test_ci: " + (end - start));
736 static void test_ci(boolean[] a) { method in class:TestBooleanVect
H A DTestShortVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], (short)-123);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(short[] a) { method in class:TestShortVect
H A DTestCharVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], (char)-123);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(char[] a) { method in class:TestCharVect
H A DTestByteVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], (byte)-123);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(byte[] a) { method in class:TestByteVect
H A DTestDoubleVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], -123.);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(double[] a) { method in class:TestDoubleVect
H A DTestLongVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], (long)-123);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(long[] a) { method in class:TestLongVect
H A DTestIntVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], (int)-123);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(int[] a) { method in class:TestIntVect
H A DTestFloatVect.java59 test_ci(a1);
107 test_ci(a1);
109 errn += verify("test_ci: a1", i, a1[i], -123.f);
500 test_ci(a1);
503 System.out.println("test_ci: " + (end - start));
737 static void test_ci(float[] a) { method in class:TestFloatVect
/openjdk9/hotspot/test/compiler/c2/cr8004867/
H A DTestIntUnsafeCAS.java84 test_ci(a1);
132 test_ci(a1);
134 errn += verify("test_ci: a1", i, a1[i], -123);
533 test_ci(a1);
536 System.out.println("test_ci: " + (end - start));
774 static void test_ci(int[] a) { method in class:TestIntUnsafeCAS

Completed in 180 milliseconds

12