Searched defs:ai (Results 1 - 13 of 13) sorted by relevance

/openjdk7/langtools/test/tools/javac/BadOptimization/
H A DDeadCode2.java38 int [] ai = null; field in class:cls
54 try { DeadCode2 ox = new DeadCode2(); int i = ox.ai[m = 7]; }
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A Dai.java53 final class ai extends javax.crypto.SealedObject { class in inherits:javax.crypto.SealedObject
57 ai(SealedObject so) { method in class:ai
/openjdk7/hotspot/src/share/vm/utilities/
H A DquickSort.cpp59 int ai = *(int*)a; local
61 if (ai == bi) {
64 if (ai < bi) {
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl_mult.c168 int ai, bi, d; local
275 ai = MP_GET_BIT(a, 2 * i + 1);
276 ai <<= 1;
277 ai |= MP_GET_BIT(a, 2 * i);
284 /* R = R + (ai * A + bi * B) */
286 point_add(rx, ry, &precomp[ai][bi][0],
287 &precomp[ai][bi][1], rx, ry, group));
H A Decp_jac.c416 int ai, bi, d; local
523 ai = MP_GET_BIT(a, 2 * i + 1);
524 ai <<= 1;
525 ai |= MP_GET_BIT(a, 2 * i);
532 /* R = R + (ai * A + bi * B) */
534 (rx, ry, &rz, &precomp[ai][bi][0], &precomp[ai][bi][1],
/openjdk7/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.cpp91 int ai = (*((StubCodeDesc**) void_a))->index(); local
93 return ai - bi;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkFunction.cpp49 Function::arg_iterator ai = function()->arg_begin(); local
50 Argument *method = ai++;
54 osr_buf = ai++;
57 Argument *base_pc = ai++;
60 Argument *thread = ai++;
H A DsharkNativeWrapper.cpp41 Function::arg_iterator ai = function()->arg_begin(); local
42 Argument *method = ai++;
44 Argument *base_pc = ai++;
47 Argument *thread = ai++;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DTypeInfoSetImpl.java176 public void add(ArrayInfoImpl<T, C, F, M> ai) { argument
177 arrays.put( ai.getType(), ai );
/openjdk7/jdk/src/share/classes/javax/management/
H A DStandardMBean.java915 customize(MBeanAttributeInfo ai, argument
917 if (equal(description, ai.getDescription()))
918 return ai;
919 if (ai instanceof OpenMBeanAttributeInfo) {
920 OpenMBeanAttributeInfo oai = (OpenMBeanAttributeInfo) ai;
921 return new OpenMBeanAttributeInfoSupport(ai.getName(),
924 ai.isReadable(),
925 ai.isWritable(),
926 ai.isIs(),
927 ai
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageReader.java1459 for (int ai = 0; bits != 0; ai++) {
1460 if ((bits & (1L<<ai)) == 0) continue;
1461 bits -= (1L<<ai);
1467 for (int ai = 0; bits != 0; ai++) {
1468 if ((bits & (1L<<ai)) == 0) continue;
1469 bits -= (1L<<ai);
1470 totalCounts[ai] += 1;
1472 if (defs[ai]
1580 badAttrIndex(int ai, int ctype) argument
[all...]
H A DBandStructure.java1900 for (int ai = 0; ai < attrIndexLimit[ctype]; ai++) {
1901 if (testBit(attrDefSeen[ctype], 1L<<ai)) continue;
1902 Attribute.Layout def = attrDefs.get(ctype).get(ai);
1904 assert(isPredefinedAttr(ctype, ai));
1910 protected boolean isPredefinedAttr(int ctype, int ai) { argument
1913 if (ai >= attrIndexLimit[ctype]) return false;
1915 if (testBit(attrDefSeen[ctype], 1L<<ai)) return false;
1916 return (attrDefs.get(ctype).get(ai) !
[all...]
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java349 int[] ai; field in class:Test

Completed in 76 milliseconds