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

12

/openjdk7/hotspot/test/compiler/7119644/
H A DTestByteDoubleVect.java65 test_vi_oppos(a1, b1, (byte)123, 103.);
138 test_vi_oppos(a2, b2, (byte)123, 103.);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (byte)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.);
390 test_vi_oppos(a1, b1, (byte)123, 103.);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(byte[] a, double[] b, byte c, double d) { method in class:TestByteDoubleVect
H A DTestByteFloatVect.java65 test_vi_oppos(a1, b1, (byte)123, 103.f);
138 test_vi_oppos(a2, b2, (byte)123, 103.f);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (byte)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.f);
390 test_vi_oppos(a1, b1, (byte)123, 103.f);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(byte[] a, float[] b, byte c, float d) { method in class:TestByteFloatVect
H A DTestByteIntVect.java65 test_vi_oppos(a1, b1, (byte)123, (int)103);
138 test_vi_oppos(a2, b2, (byte)123, (int)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (byte)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (int)103);
390 test_vi_oppos(a1, b1, (byte)123, (int)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(byte[] a, int[] b, byte c, int d) { method in class:TestByteIntVect
H A DTestByteLongVect.java65 test_vi_oppos(a1, b1, (byte)123, (long)103);
138 test_vi_oppos(a2, b2, (byte)123, (long)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (byte)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (long)103);
390 test_vi_oppos(a1, b1, (byte)123, (long)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(byte[] a, long[] b, byte c, long d) { method in class:TestByteLongVect
H A DTestByteShortVect.java65 test_vi_oppos(a1, b1, (byte)123, (short)103);
138 test_vi_oppos(a2, b2, (byte)123, (short)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (byte)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (short)103);
390 test_vi_oppos(a1, b1, (byte)123, (short)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(byte[] a, short[] b, byte c, short d) { method in class:TestByteShortVect
H A DTestCharShortVect.java65 test_vi_oppos(a1, b1, (char)123, (short)103);
138 test_vi_oppos(a2, b2, (char)123, (short)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (char)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (short)103);
390 test_vi_oppos(a1, b1, (char)123, (short)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(char[] a, short[] b, char c, short d) { method in class:TestCharShortVect
H A DTestFloatDoubleVect.java65 test_vi_oppos(a1, b1, 123.f, 103.);
138 test_vi_oppos(a2, b2, 123.f, 103.);
140 errn += verify("test_vi_oppos: a2", i, a2[i], 123.f);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.);
390 test_vi_oppos(a1, b1, 123.f, 103.);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(float[] a, double[] b, float c, double d) { method in class:TestFloatDoubleVect
H A DTestIntDoubleVect.java65 test_vi_oppos(a1, b1, (int)123, 103.);
138 test_vi_oppos(a2, b2, (int)123, 103.);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (int)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.);
390 test_vi_oppos(a1, b1, (int)123, 103.);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(int[] a, double[] b, int c, double d) { method in class:TestIntDoubleVect
H A DTestIntFloatVect.java65 test_vi_oppos(a1, b1, (int)123, 103.f);
138 test_vi_oppos(a2, b2, (int)123, 103.f);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (int)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.f);
390 test_vi_oppos(a1, b1, (int)123, 103.f);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(int[] a, float[] b, int c, float d) { method in class:TestIntFloatVect
H A DTestIntLongVect.java65 test_vi_oppos(a1, b1, (int)123, (long)103);
138 test_vi_oppos(a2, b2, (int)123, (long)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (int)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (long)103);
390 test_vi_oppos(a1, b1, (int)123, (long)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(int[] a, long[] b, int c, long d) { method in class:TestIntLongVect
H A DTestLongDoubleVect.java65 test_vi_oppos(a1, b1, (long)123, 103.);
138 test_vi_oppos(a2, b2, (long)123, 103.);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (long)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.);
390 test_vi_oppos(a1, b1, (long)123, 103.);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(long[] a, double[] b, long c, double d) { method in class:TestLongDoubleVect
H A DTestLongFloatVect.java65 test_vi_oppos(a1, b1, (long)123, 103.f);
138 test_vi_oppos(a2, b2, (long)123, 103.f);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (long)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.f);
390 test_vi_oppos(a1, b1, (long)123, 103.f);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(long[] a, float[] b, long c, float d) { method in class:TestLongFloatVect
H A DTestShortDoubleVect.java65 test_vi_oppos(a1, b1, (short)123, 103.);
138 test_vi_oppos(a2, b2, (short)123, 103.);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (short)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.);
390 test_vi_oppos(a1, b1, (short)123, 103.);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(short[] a, double[] b, short c, double d) { method in class:TestShortDoubleVect
H A DTestShortFloatVect.java65 test_vi_oppos(a1, b1, (short)123, 103.f);
138 test_vi_oppos(a2, b2, (short)123, 103.f);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (short)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], 103.f);
390 test_vi_oppos(a1, b1, (short)123, 103.f);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(short[] a, float[] b, short c, float d) { method in class:TestShortFloatVect
H A DTestShortIntVect.java65 test_vi_oppos(a1, b1, (short)123, (int)103);
138 test_vi_oppos(a2, b2, (short)123, (int)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (short)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (int)103);
390 test_vi_oppos(a1, b1, (short)123, (int)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(short[] a, int[] b, short c, int d) { method in class:TestShortIntVect
H A DTestShortLongVect.java65 test_vi_oppos(a1, b1, (short)123, (long)103);
138 test_vi_oppos(a2, b2, (short)123, (long)103);
140 errn += verify("test_vi_oppos: a2", i, a2[i], (short)123);
141 errn += verify("test_vi_oppos: b2", i, b2[i], (long)103);
390 test_vi_oppos(a1, b1, (short)123, (long)103);
393 System.out.println("test_vi_oppos: " + (end - start));
494 static void test_vi_oppos(short[] a, long[] b, short c, long d) { method in class:TestShortLongVect
H A DTestBooleanVect.java67 test_vi_oppos(a2, true);
162 test_vi_oppos(a2, true);
164 errn += verify("test_vi_oppos: a2", i, a2[i], true);
564 test_vi_oppos(a2, true);
567 System.out.println("test_vi_oppos: " + (end - start));
793 static void test_vi_oppos(boolean[] a, boolean b) { method in class:TestBooleanVect
H A DTestByteVect.java67 test_vi_oppos(a2, (byte)123);
162 test_vi_oppos(a2, (byte)123);
164 errn += verify("test_vi_oppos: a2", i, a2[i], (byte)123);
565 test_vi_oppos(a2, (byte)123);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(byte[] a, byte b) { method in class:TestByteVect
H A DTestCharVect.java67 test_vi_oppos(a2, (char)123);
162 test_vi_oppos(a2, (char)123);
164 errn += verify("test_vi_oppos: a2", i, a2[i], (char)123);
565 test_vi_oppos(a2, (char)123);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(char[] a, char b) { method in class:TestCharVect
H A DTestDoubleVect.java67 test_vi_oppos(a2, 123.);
162 test_vi_oppos(a2, 123.);
164 errn += verify("test_vi_oppos: a2", i, a2[i], 123.);
565 test_vi_oppos(a2, 123.);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(double[] a, double b) { method in class:TestDoubleVect
H A DTestFloatVect.java67 test_vi_oppos(a2, 123.f);
162 test_vi_oppos(a2, 123.f);
164 errn += verify("test_vi_oppos: a2", i, a2[i], 123.f);
565 test_vi_oppos(a2, 123.f);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(float[] a, float b) { method in class:TestFloatVect
H A DTestIntVect.java67 test_vi_oppos(a2, (int)123);
162 test_vi_oppos(a2, (int)123);
164 errn += verify("test_vi_oppos: a2", i, a2[i], (int)123);
565 test_vi_oppos(a2, (int)123);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(int[] a, int b) { method in class:TestIntVect
H A DTestLongVect.java67 test_vi_oppos(a2, (long)123);
162 test_vi_oppos(a2, (long)123);
164 errn += verify("test_vi_oppos: a2", i, a2[i], (long)123);
565 test_vi_oppos(a2, (long)123);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(long[] a, long b) { method in class:TestLongVect
H A DTestShortVect.java67 test_vi_oppos(a2, (short)123);
162 test_vi_oppos(a2, (short)123);
164 errn += verify("test_vi_oppos: a2", i, a2[i], (short)123);
565 test_vi_oppos(a2, (short)123);
568 System.out.println("test_vi_oppos: " + (end - start));
794 static void test_vi_oppos(short[] a, short b) { method in class:TestShortVect
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java75 test_vi_oppos(a2, 123, 103);
170 test_vi_oppos(a2, 123, -1);
172 errn += verify("test_vi_oppos: a2", i, a2.get(i), 123);
581 test_vi_oppos(a2, 123, 103);
584 System.out.println("test_vi_oppos: " + (end - start));
810 static void test_vi_oppos(AtomicIntegerArray a, int b, int old) { method in class:TestIntAtomicCAS

Completed in 85 milliseconds

12