| /dalvik/vm/mterp/mips/ |
| binopLit16.S | 27 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| unopWide.S | 18 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| unopWider.S | 17 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| /dalvik/vm/mterp/x86/ |
| OP_FILLED_NEW_ARRAY.S | 19 jne .L${opcode}_continue # yes, continue 31 # note: fall through to .L${opcode}_continue 39 .L${opcode}_continue: 50 jne .L${opcode}_notimpl # no, not handled yet 125 .L${opcode}_notimpl:
|
| OP_SGET_WIDE.S | 22 je .L${opcode}_resolve # if not, make it so 23 .L${opcode}_finish: # field ptr in eax 35 .L${opcode}_resolve: 54 jmp .L${opcode}_finish # success, continue
|
| OP_SPUT_OBJECT.S | 21 je .L${opcode}_resolve # if not, make it so 22 .L${opcode}_finish: # field ptr in eax 38 .L${opcode}_resolve: 57 jmp .L${opcode}_finish # success, continue
|
| OP_SPUT_WIDE.S | 23 je .L${opcode}_resolve # if not, make it so 24 .L${opcode}_finish: # field ptr in eax 36 .L${opcode}_resolve: 55 jmp .L${opcode}_finish # success, continue
|
| /external/bluetooth/bluedroid/btif/include/ |
| btif_api.h | 326 bt_status_t btif_dut_mode_send(uint16_t opcode, uint8_t *buf, uint8_t len); 337 bt_status_t btif_le_test_mode(uint16_t opcode, uint8_t *buf, uint8_t len);
|
| /external/bluetooth/bluedroid/hci/include/ |
| bt_vendor_lib.h | 31 /** Vendor specific operations OPCODE */ 265 * The opcode parameter gives the HCI OpCode (combination of OGF and OCF) of 266 * HCI Command packet. For example, opcode = 0x0c03 for the HCI_RESET command 269 typedef uint8_t (*cmd_xmit_cb)(uint16_t opcode, void *p_buf, tINT_CMD_CBACK p_cback); 320 int (*op)(bt_vendor_opcode_t opcode, void *param);
|
| /external/bluetooth/bluedroid/hci/src/ |
| bt_hw.c | 163 static uint8_t xmit_cb(uint16_t opcode, void *p_buf, tINT_CMD_CBACK p_cback) 165 return p_hci_if->send_int_cmd(opcode, (HC_BT_HDR *)p_buf, p_cback);
|
| /external/chromium/sdch/open-vcdiff/src/ |
| instruction_map.h | 38 // the corresponding opcode. 44 // to create the instruction->opcode mappings. The caller *must* have 54 // Finds an opcode that has the given inst, size, and mode for its first 57 // opcode. Otherwise, returns an opcode value between 0 and 255. 60 // usually want to try again with size == 0 to find an opcode that 73 // Given a first opcode (presumed to have been returned by a previous call to 74 // lookupFirstOpcode), finds an opcode that has the same first instruction as 75 // the first opcode, and has the given inst, size, and mode for its second 79 // usually want to try again with size == 0 to find an opcode tha [all...] |
| encodetable_test.cc | 56 int opcode) { 57 g_exercise_code_table_->inst1[opcode] = inst1; 58 g_exercise_code_table_->mode1[opcode] = mode1; 59 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 60 g_exercise_code_table_->inst2[opcode] = inst2; 61 g_exercise_code_table_->mode2[opcode] = mode2; 62 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2; 67 int opcode = 0; local 86 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++); 87 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++) [all...] |
| encodetable.cc | 107 // The VCDiff format allows each opcode to represent either 109 // examine the opcode generated by the last call to EncodeInstruction. 110 // If that opcode was a single-instruction opcode, this function checks 111 // whether there is a compound (double-instruction) opcode that can 114 // single-instruction opcode at position last_opcode_index_ will be 115 // overwritten with the new double-instruction opcode. 117 // In the majority of cases, no compound opcode will be possible, 118 // and a new single-instruction opcode will be appended to 120 // if the opcode does not implicitly give the instruction size 186 OpcodeOrNone opcode = kNoOpcode; local [all...] |
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| Executor.java | 25 import javassist.bytecode.Opcode; 32 public class Executor implements Opcode { 68 int opcode = iter.byteAt(pos); local 71 // Declared opcode in order 72 switch (opcode) { 132 evalLoad(Type.INTEGER, opcode - ILOAD_0, frame, subroutine); 138 evalLoad(Type.LONG, opcode - LLOAD_0, frame, subroutine); 144 evalLoad(Type.FLOAT, opcode - FLOAD_0, frame, subroutine); 150 evalLoad(Type.DOUBLE, opcode - DLOAD_0, frame, subroutine); 156 evalLoad(Type.OBJECT, opcode - ALOAD_0, frame, subroutine) 830 int opcode = iter.byteAt(pos); local 879 int opcode = iter.byteAt(pos + 1); local [all...] |
| /external/llvm/utils/TableGen/ |
| X86DisassemblerTables.h | 35 /// The decoder tables. There is one for each opcode type: 132 /// Opcode and ModRMDecisions. A ContextDecision is printed as: 148 /// IC is one of the contexts in InstructionContext. There is an opcode 190 /// 0xnn is the lowest possible opcode for the current instruction, used for 234 /// @param opcode - The opcode of the instruction, for error reporting. 238 uint8_t opcode); 250 /// setTableFields - Uses the opcode type, instruction context, opcode, and a 254 /// @param type - The opcode type (ONEBYTE, TWOBYTE, etc. [all...] |
| /external/open-vcdiff/src/ |
| instruction_map.h | 38 // the corresponding opcode. 44 // to create the instruction->opcode mappings. The caller *must* have 54 // Finds an opcode that has the given inst, size, and mode for its first 57 // opcode. Otherwise, returns an opcode value between 0 and 255. 60 // usually want to try again with size == 0 to find an opcode that 73 // Given a first opcode (presumed to have been returned by a previous call to 74 // lookupFirstOpcode), finds an opcode that has the same first instruction as 75 // the first opcode, and has the given inst, size, and mode for its second 79 // usually want to try again with size == 0 to find an opcode tha [all...] |
| encodetable_test.cc | 55 int opcode) { 56 g_exercise_code_table_->inst1[opcode] = inst1; 57 g_exercise_code_table_->mode1[opcode] = mode1; 58 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 59 g_exercise_code_table_->inst2[opcode] = inst2; 60 g_exercise_code_table_->mode2[opcode] = mode2; 61 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2; 66 int opcode = 0; local 85 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++); 86 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++) [all...] |
| /external/proguard/src/proguard/optimize/info/ |
| DotClassMarker.java | 51 if (constantInstruction.opcode == InstructionConstants.OP_LDC || 52 constantInstruction.opcode == InstructionConstants.OP_LDC_W)
|
| /external/webkit/Source/JavaScriptCore/bytecode/ |
| Opcode.h | 196 macro(op_end, 2) // end must be the last opcode in the list 198 #define OPCODE_ID_ENUM(opcode, length) opcode, 208 #define OPCODE_LENGTH(opcode) opcode##_length 210 #define OPCODE_ID_LENGTH_MAP(opcode, length) length, 220 typedef void* Opcode; 222 typedef const void* Opcode; 225 typedef OpcodeID Opcode; 256 static void recordInstruction(int opcode); [all...] |
| /external/openssl/crypto/perlasm/ |
| x86nasm.pl | 14 { my $opcode=shift; 18 { if ($opcode =~ m/^j/o && $#_==0) # optimize jumps 20 elsif ($opcode eq "lea" && $#_==1) # wipe storage qualifier from lea 22 elsif ($opcode eq "clflush" && $#_==0) 25 &::emit($opcode,@_);
|
| /sdk/emulator/qtools/ |
| armdis.cpp | 6 #include "opcode.h" 45 Opcode opcode = decode(insn); local 46 switch (opcode) { 69 return disasm_alu(opcode, insn, ptr); 72 return disasm_branch(addr, opcode, insn, ptr); 90 return disasm_memblock(opcode, insn, ptr); 107 return disasm_mcr(opcode, insn, ptr); 109 return disasm_mla(opcode, insn, ptr); 115 return disasm_mul(opcode, insn, ptr) 761 uint8_t opcode = (insn >> 21) & 0x7; local 852 uint8_t opcode = (insn >> 21) & 0xf; local [all...] |
| /external/bluetooth/bluedroid/stack/btu/ |
| btu_hcif.c | 154 UINT16 opcode; local 165 /* get command opcode */ 166 STREAM_TO_UINT16 (opcode, p); 169 if ((opcode == HCI_RESET) || (opcode == HCI_HOST_NUM_PACKETS_DONE)) 184 if ((opcode & HCI_GRP_VENDOR_SPECIFIC) == HCI_GRP_VENDOR_SPECIFIC 186 || (opcode == HCI_BLE_RAND ) 187 || (opcode == HCI_BLE_ENCRYPT) 193 "Storing VSC callback opcode=0x%04x, Callback function=0x%07x", 194 opcode, *(UINT32 *)(p_buf + 1)) 1431 UINT16 opcode; local 1530 UINT16 opcode; local [all...] |
| /dalvik/dx/src/com/android/dx/io/ |
| Opcodes.java | 20 * All the Dalvik opcode value constants. See the related spec 21 * document for the meaning and instruction format of each opcode. 25 * pseudo-opcode used for nonstandard format payload "instructions". TODO: 32 * pseudo-opcode used to indicate there is no next opcode; used 33 * in opcode chaining lists 37 /** minimum valid opcode value */ 40 /** maximum valid opcode value */ 43 // BEGIN(opcodes); GENERATED AUTOMATICALLY BY opcode-gen 264 // TODO: Generate these payload opcodes with opcode-gen [all...] |
| /dalvik/vm/compiler/codegen/arm/ |
| CodegenDriver.cpp | 88 switch (mir->dalvikInsn.opcode) { 134 switch (mir->dalvikInsn.opcode) { 178 Opcode opcode = mir->dalvikInsn.opcode; local 180 switch (opcode) { 208 static void selfVerificationBranchInsert(LIR *currentLIR, ArmOpcode opcode, 212 insn->opcode = opcode; 247 TemplateOpcode opcode = TEMPLATE_MEM_OP_DECODE local 899 Opcode opcode = mir->dalvikInsn.opcode; local 1654 Opcode opcode = mir->dalvikInsn.opcode; local 1718 Opcode opcode = mir->dalvikInsn.opcode; local 1977 Opcode opcode = mir->dalvikInsn.opcode; local 2654 Opcode opcode = mir->dalvikInsn.opcode; local 2679 Opcode opcode = mir->dalvikInsn.opcode; local [all...] |
| /development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
| MethodSourcer.java | 165 public void visitFieldInsn(int opcode, String owner, String name, String desc) { 180 public void visitInsn(int opcode) { 185 public void visitIntInsn(int opcode, int operand) { 190 public void visitJumpInsn(int opcode, Label label) { 226 public void visitMethodInsn(int opcode, String owner, String name, String desc) { 252 public void visitTypeInsn(int opcode, String type) { 257 public void visitVarInsn(int opcode, int var) {
|