Searched refs:iadd (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/net/Socks/
H A DSocksServer.java305 InetAddress iadd = addr.getAddress();
306 if (iadd instanceof Inet4Address) {
311 out.write(iadd.getAddress());
312 } else if (iadd instanceof Inet6Address) {
317 out.write(iadd.getAddress());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DByteCodes.java138 iadd = 96, field in interface:ByteCodes
H A DItems.java411 code.emitop0(iadd);
H A DCode.java628 case iadd:
2087 mnem[iadd] = "iadd";
H A DGen.java1863 (operator.opcode == iadd || operator.opcode == isub)) {
1881 (operator.opcode == iadd || operator.opcode == isub)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java542 enterUnop("++", intType, intType, iadd);
543 enterUnop("++", charType, charType, iadd);
544 enterUnop("++", shortType, shortType, iadd);
545 enterUnop("++", byteType, byteType, iadd);
593 enterBinop("+", intType, intType, intType, iadd);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java168 case iadd:
H A DLower.java787 if (ByteCodes.iadd <= bytecode && bytecode <= ByteCodes.lxor)
788 return (bytecode - iadd) * 2 + FIRSTASGOPcode;
790 return (ByteCodes.lxor + 1 - iadd) * 2 + FIRSTASGOPcode;
792 return (bytecode - ishll + ByteCodes.lxor + 2 - iadd) * 2 + FIRSTASGOPcode;
852 case ByteCodes.iadd: case ByteCodes.ladd:

Completed in 242 milliseconds