HomeSort by relevance Sort by last modified time
    Searched defs:OPCODE (Results 1 - 22 of 22) sorted by null

  /external/javassist/src/main/javassist/bytecode/
Mnemonic.java 21 * <p>This interface has been separated from javassist.bytecode.Opcode
23 * interface were merged with Opcode, extra memory would be unnecessary
26 * @see Opcode
31 * The instruction names (mnemonics) sorted by the opcode.
37 String[] OPCODE = {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderArrayPayload.java 36 import org.jf.dexlib2.Opcode;
45 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
52 super(OPCODE);
61 @Override public Format getFormat() { return OPCODE.format; }
BuilderPackedSwitchPayload.java 37 import org.jf.dexlib2.Opcode;
47 public static final Opcode OPCODE = Opcode.PACKED_SWITCH_PAYLOAD;
53 super(OPCODE);
68 @Override public Format getFormat() { return OPCODE.format; }
BuilderSparseSwitchPayload.java 38 import org.jf.dexlib2.Opcode;
48 public static final Opcode OPCODE = Opcode.SPARSE_SWITCH_PAYLOAD;
53 super(OPCODE);
69 @Override public Format getFormat() { return OPCODE.format; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableArrayPayload.java 36 import org.jf.dexlib2.Opcode;
45 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
52 super(OPCODE);
59 super(OPCODE);
80 @Override public Format getFormat() { return OPCODE.format; }
ImmutablePackedSwitchPayload.java 36 import org.jf.dexlib2.Opcode;
46 public static final Opcode OPCODE = Opcode.PACKED_SWITCH_PAYLOAD;
51 super(OPCODE);
58 super(OPCODE);
74 @Override public Format getFormat() { return OPCODE.format; }
ImmutableSparseSwitchPayload.java 36 import org.jf.dexlib2.Opcode;
46 public static final Opcode OPCODE = Opcode.SPARSE_SWITCH_PAYLOAD;
51 super(OPCODE);
57 super(OPCODE);
73 @Override public Format getFormat() { return OPCODE.format; }
  /external/v8/test/unittests/compiler/
opcodes-unittest.cc 14 bool IsCommonOpcode(IrOpcode::Value opcode) {
15 switch (opcode) {
16 #define OPCODE(Opcode) \
17 case IrOpcode::k##Opcode: \
19 COMMON_OP_LIST(OPCODE)
20 CONTROL_OP_LIST(OPCODE)
21 #undef OPCODE
28 bool IsControlOpcode(IrOpcode::Value opcode) {
29 switch (opcode) {
    [all...]
machine-operator-reducer-unittest.cc 254 #define OPCODE(Opcode) \
255 { &MachineOperatorBuilder::Opcode, #Opcode } \
257 MACHINE_COMPARE_BINOP_LIST(OPCODE)
258 #undef OPCODE
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedArrayPayload.java 34 import org.jf.dexlib2.Opcode;
44 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
55 super(dexFile, OPCODE, instructionStart);
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketParserD06.java 42 START(0), MASK(4), OPCODE(1), LENGTH_7(1), LENGTH_16(2), LENGTH_63(8), DATA(0), SKIP(1);
157 _state=_masked?State.MASK:State.OPCODE;
164 _state=State.OPCODE;
169 case OPCODE:
WebSocketParserD08.java 42 START(0), OPCODE(1), LENGTH_7(1), LENGTH_16(2), LENGTH_63(8), MASK(4), PAYLOAD(0), DATA(0), SKIP(1), SEEK_EOF(1);
207 _state=_opcode==WebSocketConnectionD08.OP_CLOSE?State.SEEK_EOF:State.OPCODE;
211 case OPCODE:
WebSocketParserRFC6455.java 42 START(0), OPCODE(1), LENGTH_7(1), LENGTH_16(2), LENGTH_63(8), MASK(4), PAYLOAD(0), DATA(0), SKIP(1), SEEK_EOF(1);
207 _state=_opcode==WebSocketConnectionRFC6455.OP_CLOSE?State.SEEK_EOF:State.OPCODE;
211 case OPCODE:
  /toolchain/binutils/binutils-2.25/gas/config/
tc-rl78.c 466 so that we can retain this alignment as we adjust opcode sizes. */
544 0 /* opcode */);
693 opcode (like BRA.S). We store the number of total bytes we need in
695 existing opcode bytes to figure out what actual opcode we need to
728 /* Given the opcode bytes at OP, figure out which opcode it is and
729 return the type of opcode. We use this to re-encode the opcode as
805 /* Estimate how big the opcode is after this relax pass. The retur
    [all...]
tc-rx.c 687 /* These negative numbers are found in rx_bytesT.n_base for non-opcode
722 /* We set n_ops to be "size of next opcode" if the next opcode doesn't relax. */
742 0 /* opcode */);
1109 0 /* opcode */);
1260 so that we can retain this alignment as we adjust opcode sizes. */
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
arc-dis.c 25 #include "opcode/arc.h"
62 #define OPCODE(word) (BITS ((word), 27, 31))
558 state->_opcode = OPCODE (state->words[0]);
657 decodingClass = CLASS_A4_OP3_GENERAL; /* default for opcode 3... */
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 179 static final String OPCODE = "op";
302 int op = args.getInt(OPCODE);
477 int opcode = msg.arg1; local
480 CatLog.d(LOG_TAG, "handleMessage opcode[" + opcode + "], sim id[" + slotId + "]");
481 if (opcode == OP_CMD && msg.obj != null &&
485 mStkContext[slotId].mOpCode = opcode;
486 switch (opcode) {
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/
jetty-websocket-8.1.14.v20131031.jar 
  /prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/robolectric/v1/lib/main/
javassist-3.14.0-GA.jar 

Completed in 1135 milliseconds