| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/arpa/ |
| nameser_compat.h | 53 unsigned opcode: 4; /* purpose of message */ member in struct:__anon29196 69 unsigned opcode :4; /* purpose of message */ member in struct:__anon29196
|
| /external/openssl/crypto/bn/asm/ |
| parisc-mont.pl | 910 { my $opcode=(0x03<<26)|($2<<21)|($1<<16)|(3<<6)|$3; 911 sprintf "\t.WORD\t0x%08x\t; %s",$opcode,$orig; 914 { my $opcode=(0x03<<26)|($2<<21)|(1<<12)|(3<<6)|$3; 915 $opcode|=(($1&0xF)<<17)|(($1&0x10)<<12); # encode offset 916 $opcode|=(1<<5) if ($mod =~ /^,m/); 917 $opcode|=(1<<13) if ($mod =~ /^,mb/); 918 sprintf "\t.WORD\t0x%08x\t; %s",$opcode,$orig; 928 { my $opcode=(0x03<<26)|($3<<21)|($1<<16)|(1<<12)|(0xB<<6); 929 $opcode|=(($2&0xF)<<1)|(($2&0x10)>>4); # encode offset 930 $opcode|=(1<<5) if ($mod =~ /^,m/) [all...] |
| /external/webkit/Source/JavaScriptCore/assembler/ |
| X86Assembler.h | [all...] |
| /external/llvm/lib/Target/X86/Disassembler/ |
| X86DisassemblerDecoder.c | 53 * @param type - The opcode type (i.e., how many bytes it has). 56 * @param opcode - The last byte of the instruction's opcode, not counting 62 uint8_t opcode) { 86 return decision->opcodeDecisions[insnContext].modRMDecisions[opcode]. 96 * @param opcode - See modRMRequired(). 102 uint8_t opcode, 108 dec = &ONEBYTE_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode]; 111 dec = &TWOBYTE_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode]; 114 dec = &THREEBYTE38_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode]; [all...] |
| /external/webkit/Source/JavaScriptCore/bytecode/ |
| CodeBlock.cpp | 214 OpcodeID currentOpcode = exec->interpreter()->getOpcodeID(instructions[i].u.opcode); 290 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id)) { 294 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_self)) { 298 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_proto)) { 302 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id_transition)) { 306 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_chain)) { 310 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id)) { 314 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id_replace)) { 318 if (vPC[0].u.opcode == interpreter->getOpcode(op_resolve_global)) { 322 if (vPC[0].u.opcode == interpreter->getOpcode(op_resolve_global_dynamic)) [all...] |
| /external/v8/src/ |
| deoptimizer.cc | 551 Translation::Opcode opcode = local 552 static_cast<Translation::Opcode>(iterator.Next()); 553 ASSERT(Translation::BEGIN == opcode); 554 USE(opcode); 569 Translation::Opcode opcode = local 570 static_cast<Translation::Opcode>(iterator.Next()); 571 switch (opcode) { 686 Translation::Opcode opcode local 874 Translation::Opcode opcode = local 1493 Translation::Opcode opcode = local 1573 Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next()); local [all...] |
| /external/v8/src/mips/ |
| assembler-mips.cc | 502 uint32_t opcode = GetOpcodeField(instr); local 507 return opcode == BEQ || 508 opcode == BNE || 509 opcode == BLEZ || 510 opcode == BGTZ || 511 opcode == BEQL || 512 opcode == BNEL || 513 opcode == BLEZL || 514 opcode == BGTZL || 515 (opcode == REGIMM && (rt_field == BLTZ || rt_field == BGEZ | 533 uint32_t opcode = GetOpcodeField(instr); local 545 uint32_t opcode = GetOpcodeField(instr); local 565 uint32_t opcode = GetOpcodeField(instr); local 572 uint32_t opcode = GetOpcodeField(instr); local [all...] |
| /bionic/libc/kernel/common/linux/mmc/ |
| mmc.h | 30 u32 opcode; member in struct:mmc_command
|
| /dalvik/dx/src/com/android/dx/cf/code/ |
| Machine.java | 207 * "Runs" the indicated opcode in an appropriate way, using the arguments 211 * @param offset {@code >= 0;} byte offset in the method to the opcode being 213 * @param opcode {@code >= 0;} the opcode to run 215 public void run(Frame frame, int offset, int opcode);
|
| /dalvik/libdex/ |
| DexDebugInfo.cpp | 212 u1 opcode = *stream++; local 215 switch (opcode) { 241 if (opcode == DBG_START_LOCAL_EXTENDED) { 291 int adjopcode = opcode - DBG_FIRST_SPECIAL;
|
| /dalvik/vm/compiler/ |
| Compiler.h | 69 #define SINGLE_STEP_OP(opcode) \ 71 ((gDvmJit.opList[opcode >> 3] & (1 << (opcode & 0x7))) != 0)) 251 bool dvmIsOpcodeSupportedByJit(Opcode opcode);
|
| /dalvik/vm/compiler/codegen/x86/libenc/ |
| enc_base.cpp | 159 // opcode. 188 // a single opcode byte. 205 // opcode, ModR/M bytes or scale-indexing bytes. The opcode 270 // the plus sign to form a single opcode byte. 317 // it's explicitly specified by opcode 318 // So, if we don't have REX in opcode but need_rex, then set rex here 319 // otherwise, wait until opcode is set, and then update REX 322 unsigned char _1st = odesc->opcode[0]; 326 ((_1st == 0x66) || (_1st == 0xF2 || _1st == 0xF3) && odesc->opcode[1] == 0x0F)) [all...] |
| /dalvik/vm/mterp/armv5te/ |
| OP_INVOKE_STATIC.S | 22 b .L${opcode}_resolve 26 .L${opcode}_resolve:
|
| /dalvik/vm/mterp/mips/ |
| OP_INVOKE_STATIC.S | 22 b .L${opcode}_resolve 25 .L${opcode}_resolve:
|
| /development/ndk/platforms/android-3/include/linux/mmc/ |
| mmc.h | 24 u32 opcode; member in struct:mmc_command
|
| /external/bluetooth/bluedroid/btif/src/ |
| bluetooth.c | 351 int dut_mode_send(uint16_t opcode, uint8_t* buf, uint8_t len) 359 return btif_dut_mode_send(opcode, buf, len); 363 int le_test_mode(uint16_t opcode, uint8_t* buf, uint8_t len) 371 return btif_le_test_mode(opcode, buf, len);
|
| /external/bluetooth/bluedroid/stack/avrc/ |
| avrc_pars_tg.c | 279 switch (p_msg->hdr.opcode) 285 case AVRC_OP_PASS_THRU: /* 0x7C panel subunit opcode */ 294 AVRC_TRACE_ERROR1("AVRC_ParsCommand() unknown opcode:0x%x", p_msg->hdr.opcode); 297 p_result->cmd.opcode = p_msg->hdr.opcode;
|
| /external/kernel-headers/original/asm-x86/ |
| alternative_32.h | 152 extern void text_poke(void *addr, unsigned char *opcode, int len);
|
| /external/llvm/lib/IR/ |
| ConstantFold.h | 31 unsigned opcode, ///< The opcode of the cast 46 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
| /external/proguard/src/proguard/optimize/info/ |
| InstanceofClassMarker.java | 51 if (constantInstruction.opcode == InstructionConstants.OP_INSTANCEOF)
|
| InstantiationClassMarker.java | 51 if (constantInstruction.opcode == InstructionConstants.OP_NEW)
|
| SuperInvocationMarker.java | 52 if (constantInstruction.opcode == InstructionConstants.OP_INVOKESPECIAL)
|
| /external/proguard/src/proguard/optimize/peephole/ |
| NopRemover.java | 77 if (simpleInstruction.opcode == InstructionConstants.OP_NOP &&
|
| /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mmc/ |
| mmc.h | 24 u32 opcode; member in struct:mmc_command
|
| /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mmc/ |
| mmc.h | 24 u32 opcode; member in struct:mmc_command
|