Searched refs:a2 (Results 1 - 25 of 153) sorted by relevance

1234567

/openjdk7/langtools/test/tools/javac/cast/
H A DBoxedArray.java34 int[] a2; field in class:BoxedArray
36 a2 = (int[]) a1;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAddressOps.java34 /** Returns true if a1 is less than a2. Either or both may be null. */
35 public static boolean lessThan(Address a1, Address a2) { argument
36 if (a2 == null) {
41 return a1.lessThan(a2);
45 /** Returns true if a1 is less than or equal to a2. Either or both may be null. */
46 public static boolean lessThanOrEqual(Address a1, Address a2) { argument
47 if (a2 == null) {
52 return a1.lessThanOrEqual(a2);
56 /** Returns true if a1 is greater than a2. Either or both may be null. */
57 public static boolean greaterThan(Address a1, Address a2) { argument
68 greaterThanOrEqual(Address a1, Address a2) argument
79 equal(Address a1, Address a2) argument
92 lt(Address a1, Address a2) argument
97 lte(Address a1, Address a2) argument
102 gt(Address a1, Address a2) argument
107 gte(Address a1, Address a2) argument
112 max(Address a1, Address a2) argument
117 min(Address a1, Address a2) argument
[all...]
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DLabelInUse.java31 for (String a2: args) {
32 System.out.println(a1 + " " + a2);
/openjdk7/langtools/test/tools/javac/warnings/6594914/
H A DT6594914a.java14 DeprecatedClass a2; field in class:T6747671a
27 DeprecatedClass a2;
/openjdk7/hotspot/test/compiler/7119644/
H A DTestBooleanVect.java53 boolean[] a2 = new boolean[ARRLEN];
57 test_vi(a2, true);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, true, true);
62 test_vi_neg(a2, true);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, true, true);
67 test_vi_oppos(a2, tru
[all...]
H A DTestByteVect.java53 byte[] a2 = new byte[ARRLEN];
57 test_vi(a2, (byte)123);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, (byte)123, (byte)103);
62 test_vi_neg(a2, (byte)123);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, (byte)123, (byte)103);
67 test_vi_oppos(a2, (byt
[all...]
H A DTestCharVect.java53 char[] a2 = new char[ARRLEN];
57 test_vi(a2, (char)123);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, (char)123, (char)103);
62 test_vi_neg(a2, (char)123);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, (char)123, (char)103);
67 test_vi_oppos(a2, (cha
[all...]
H A DTestDoubleVect.java53 double[] a2 = new double[ARRLEN];
57 test_vi(a2, 123.);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, 123., 103.);
62 test_vi_neg(a2, 123.);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, 123., 103.);
67 test_vi_oppos(a2, 12
[all...]
H A DTestIntVect.java53 int[] a2 = new int[ARRLEN];
57 test_vi(a2, (int)123);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, (int)123, (int)103);
62 test_vi_neg(a2, (int)123);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, (int)123, (int)103);
67 test_vi_oppos(a2, (in
[all...]
H A DTestLongVect.java53 long[] a2 = new long[ARRLEN];
57 test_vi(a2, (long)123);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, (long)123, (long)103);
62 test_vi_neg(a2, (long)123);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, (long)123, (long)103);
67 test_vi_oppos(a2, (lon
[all...]
H A DTestShortVect.java53 short[] a2 = new short[ARRLEN];
57 test_vi(a2, (short)123);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, (short)123, (short)103);
62 test_vi_neg(a2, (short)123);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, (short)123, (short)103);
67 test_vi_oppos(a2, (shor
[all...]
H A DTestFloatVect.java53 float[] a2 = new float[ARRLEN];
57 test_vi(a2, 123.f);
58 test_cp(a1, a2);
59 test_2ci(a1, a2);
60 test_2vi(a1, a2, 123.f, 103.f);
62 test_vi_neg(a2, 123.f);
63 test_cp_neg(a1, a2);
64 test_2ci_neg(a1, a2);
65 test_2vi_neg(a1, a2, 123.f, 103.f);
67 test_vi_oppos(a2, 12
[all...]
/openjdk7/langtools/test/tools/javac/mixedTarget/
H A DCompatibleAbstracts2.java30 A a2 = (A) b;
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DCaseSensitiveAliases.java91 X509Certificate[] a2 = {c2};
104 ks.setKeyEntry("ALIAS", p2, pw, a2);
113 match(a2, ks.getCertificateChain("alias"));
114 match(a2, ks.getCertificateChain("Alias"));
115 match(a2, ks.getCertificateChain("ALIAS"));
125 match(a2, ks.getCertificateChain("ALIAS"));
138 private static void match(Certificate[] a1, Certificate[] a2) throws Exception { argument
139 System.out.println(String.valueOf(a2).split("\\n")[0]);
140 if ((a1 != a2) && (Arrays.equals(a1, a2)
[all...]
/openjdk7/hotspot/test/compiler/8004867/
H A DTestIntAtomicCAS.java56 AtomicIntegerArray a2 = new AtomicIntegerArray(ARRLEN);
60 a2.set(i, -1);
65 test_vi(a2, 123, -1);
66 test_cp(a1, a2);
67 test_2ci(a1, a2);
68 test_2vi(a1, a2, 123, 103);
70 test_vi_neg(a2, 123, 103);
71 test_cp_neg(a1, a2);
72 test_2ci_neg(a1, a2);
73 test_2vi_neg(a1, a2, 12
[all...]
H A DTestIntAtomicOrdered.java56 AtomicIntegerArray a2 = new AtomicIntegerArray(ARRLEN);
60 a2.lazySet(i, -1);
65 test_vi(a2, 123, -1);
66 test_cp(a1, a2);
67 test_2ci(a1, a2);
68 test_2vi(a1, a2, 123, 103);
70 test_vi_neg(a2, 123, 103);
71 test_cp_neg(a1, a2);
72 test_2ci_neg(a1, a2);
73 test_2vi_neg(a1, a2, 12
[all...]
H A DTestIntAtomicVolatile.java56 AtomicIntegerArray a2 = new AtomicIntegerArray(ARRLEN);
60 a2.set(i, -1);
65 test_vi(a2, 123, -1);
66 test_cp(a1, a2);
67 test_2ci(a1, a2);
68 test_2vi(a1, a2, 123, 103);
70 test_vi_neg(a2, 123, 103);
71 test_cp_neg(a1, a2);
72 test_2ci_neg(a1, a2);
73 test_2vi_neg(a1, a2, 12
[all...]
H A DTestIntUnsafeCAS.java73 int[] a2 = new int[ARRLEN];
77 a2[i] = -1;
82 test_vi(a2, 123, -1);
83 test_cp(a1, a2);
84 test_2ci(a1, a2);
85 test_2vi(a1, a2, 123, 103);
87 test_vi_neg(a2, 123, 103);
88 test_cp_neg(a1, a2);
89 test_2ci_neg(a1, a2);
90 test_2vi_neg(a1, a2, 12
[all...]
H A DTestIntUnsafeOrdered.java73 int[] a2 = new int[ARRLEN];
77 a2[i] = -1;
82 test_vi(a2, 123, -1);
83 test_cp(a1, a2);
84 test_2ci(a1, a2);
85 test_2vi(a1, a2, 123, 103);
87 test_vi_neg(a2, 123, 103);
88 test_cp_neg(a1, a2);
89 test_2ci_neg(a1, a2);
90 test_2vi_neg(a1, a2, 12
[all...]
H A DTestIntUnsafeVolatile.java73 int[] a2 = new int[ARRLEN];
77 a2[i] = -1;
82 test_vi(a2, 123, -1);
83 test_cp(a1, a2);
84 test_2ci(a1, a2);
85 test_2vi(a1, a2, 123, 103);
87 test_vi_neg(a2, 123, 103);
88 test_cp_neg(a1, a2);
89 test_2ci_neg(a1, a2);
90 test_2vi_neg(a1, a2, 12
[all...]
/openjdk7/hotspot/test/runtime/7100935/
H A DTestShortArraycopy.java36 static short[] a2 = new short[8]; field in class:TestShortArraycopy
45 a2[i] = (short)0xffff;
65 System.arraycopy(a2, 5, a1, 3, 3);
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddtrace.hpp151 #define HS_DTRACE_PROBE3(provider,name,a0,a1,a2)\
152 HS_DTRACE_PROBE_N(provider,name,((uintptr_t)a0,(uintptr_t)a1,(uintptr_t)a2))
153 #define HS_DTRACE_PROBE4(provider,name,a0,a1,a2,a3)\
154 HS_DTRACE_PROBE_N(provider,name,((uintptr_t)a0,(uintptr_t)a1,(uintptr_t)a2,\
156 #define HS_DTRACE_PROBE5(provider,name,a0,a1,a2,a3,a4)\
157 HS_DTRACE_PROBE_N(provider,name,((uintptr_t)a0,(uintptr_t)a1,(uintptr_t)a2,\
159 #define HS_DTRACE_PROBE6(provider,name,a0,a1,a2,a3,a4,a5)\
160 HS_DTRACE_PROBE_N(provider,name,((uintptr_t)a0,(uintptr_t)a1,(uintptr_t)a2,\
162 #define HS_DTRACE_PROBE7(provider,name,a0,a1,a2,a3,a4,a5,a6)\
163 HS_DTRACE_PROBE_N(provider,name,((uintptr_t)a0,(uintptr_t)a1,(uintptr_t)a2,\
[all...]
/openjdk7/hotspot/test/compiler/6478991/
H A DNullCheckTest.java47 private static void test(A a1, A a2) { argument
53 a1.inlined(a2);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_v_ImageXor.c72 #define VIS_LOGIC(a1, a2) vis_fxor(a1, a2)
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineClasses.sh81 a2(); function
84 public void a2() {

Completed in 1889 milliseconds

1234567