HomeSort by relevance Sort by last modified time
    Searched refs:OPCODE (Results 1 - 25 of 28) sorted by null

1 2

  /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 = {
InstructionPrinter.java 26 public class InstructionPrinter implements Opcode {
28 private final static String opcodes[] = Mnemonic.OPCODE;
60 int opcode = iter.byteAt(pos); local
62 if (opcode > opcodes.length || opcode < 0)
63 throw new IllegalArgumentException("Invalid opcode, opcode: " + opcode + " pos: "+ pos);
65 String opstring = opcodes[opcode];
66 switch (opcode) {
149 int opcode = iter.byteAt(pos + 1); local
    [all...]
  /external/llvm/lib/Analysis/
InstCount.cpp 31 #define HANDLE_INST(N, OPCODE, CLASS) \
32 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
44 #define HANDLE_INST(N, OPCODE, CLASS) \
45 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /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/valgrind/main/none/tests/ppc32/
opcodes.h 28 #define X20_ASM(OPCODE, TH, RA, RB, XO, RES) \
30 "(" #OPCODE "<<" X20_OPCODE_OFFSET ")" "+" \
37 #define X20(OPCODE, TH, RA, RB, XO, RES) X20_ASM(OPCODE, TH, RA, RB, XO, RES)
  /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/dexbacked/instruction/
DexBackedArrayPayload.java 34 import org.jf.dexlib2.Opcode;
44 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
55 super(dexFile, OPCODE, instructionStart);
  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 58 args.putInt(StkAppService.OPCODE, op);
91 args.putInt(StkAppService.OPCODE, StkAppService.OP_LOCALE_CHANGED);
98 args.putInt(StkAppService.OPCODE, StkAppService.OP_IDLE_SCREEN);
BootCompletedReceiver.java 42 args.putInt(StkAppService.OPCODE, StkAppService.OP_BOOT_COMPLETED);
StkMain.java 98 args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
ToneDialog.java 169 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkLauncherActivity.java 199 args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
StkDialogActivity.java 279 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkInputActivity.java 248 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkMenuActivity.java 485 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkAppService.java 173 static final String OPCODE = "op";
293 int op = args.getInt(OPCODE);
468 int opcode = msg.arg1; local
471 CatLog.d(LOG_TAG, "handleMessage opcode[" + opcode + "], sim id[" + slotId + "]");
472 if (opcode == OP_CMD && msg.obj != null &&
476 mStkContext[slotId].mOpCode = opcode;
477 switch (opcode) {
    [all...]
  /external/llvm/include/llvm/IR/
InstVisitor.h 27 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
79 /// opcode.
122 #define HANDLE_INST(NUM, OPCODE, CLASS) \
123 case Instruction::OPCODE: return \
125 visit##OPCODE(static_cast<CLASS&>(I));
150 // These functions can also implement fan-out, when a single opcode and
154 #define HANDLE_INST(NUM, OPCODE, CLASS) \
155 RetTy visit##OPCODE(CLASS &I) { \
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 44 : Op0(Op0In), Op1(Op1In), Opcode(0), ICmpType(0), CCValid(0), CCMask(0) {}
49 // The opcode that should be used to compare Op0 and Op1.
50 unsigned Opcode;
55 // The mask of CC values that Opcode can produce.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_vertex_array.c 59 * 1.1 and EXT_vertex_arrays is the opcode used for the DrawArrays command.
1087 #define COMMON_ARRAY_DATA_INIT(a, PTR, TYPE, STRIDE, COUNT, NORMALIZED, HDR_SIZE, OPCODE) \
1121 uint16_t opcode; local
1166 uint16_t opcode; local
1237 uint16_t opcode; local
1292 uint16_t opcode; local
1399 uint16_t opcode; local
1472 uint16_t opcode; local
1532 uint16_t opcode; local
1579 uint16_t opcode; local
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/mesa3d/src/glx/
indirect_vertex_array.c 59 * 1.1 and EXT_vertex_arrays is the opcode used for the DrawArrays command.
1087 #define COMMON_ARRAY_DATA_INIT(a, PTR, TYPE, STRIDE, COUNT, NORMALIZED, HDR_SIZE, OPCODE) \
1121 uint16_t opcode; local
1166 uint16_t opcode; local
1237 uint16_t opcode; local
1292 uint16_t opcode; local
1399 uint16_t opcode; local
1472 uint16_t opcode; local
1532 uint16_t opcode; local
1579 uint16_t opcode; local
    [all...]

Completed in 664 milliseconds

1 2