HomeSort by relevance Sort by last modified time
    Searched refs:OPCODE (Results 1 - 19 of 19) 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 = {
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 30 #define HANDLE_INST(N, OPCODE, CLASS) \
31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
43 #define HANDLE_INST(N, OPCODE, CLASS) \
44 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /packages/apps/Stk/src/com/android/stk/
StkLauncherActivity.java 34 args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
BootCompletedReceiver.java 37 args.putInt(StkAppService.OPCODE, StkAppService.OP_BOOT_COMPLETED);
StkCmdReceiver.java 45 args.putInt(StkAppService.OPCODE, StkAppService.OP_CMD);
54 args.putInt(StkAppService.OPCODE, StkAppService.OP_END_SESSION);
ToneDialog.java 133 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkDialogActivity.java 155 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkMenuActivity.java 326 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkInputActivity.java 190 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
StkAppService.java 92 static final String OPCODE = "op";
185 msg.arg1 = args.getInt(OPCODE);
259 int opcode = msg.arg1; local
261 switch (opcode) {
    [all...]
  /external/llvm/include/llvm/
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     [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...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 8290 milliseconds