HomeSort by relevance Sort by last modified time
    Searched full:opcode (Results 326 - 350 of 2817) sorted by null

<<11121314151617181920>>

  /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...]
  /dalvik/libdex/
DexOpcodes.h 18 * Dalvik opcode information.
21 * automatically by the opcode-gen tool. Any edits to the generated
24 * See the file opcode-gen/README.txt for information about updating
34 * kMaxOpcodeValue: the highest possible raw (unpacked) opcode value
36 * kNumPackedOpcodes: the highest possible packed opcode value of a
37 * valid Dalvik opcode, plus one
42 // BEGIN(libdex-maximum-values); GENERATED AUTOMATICALLY BY opcode-gen
45 // END(libdex-maximum-values); GENERATED AUTOMATICALLY BY opcode-gen
58 * associated with each is the corresponding packed opcode number.
59 * This is different than the opcode value from the Dalvik bytecod
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86bc.c 407 x86_opcode_print(const x86_opcode *opcode, FILE *f, int indent_level)
410 (unsigned int)opcode->opcode[0],
411 (unsigned int)opcode->opcode[1],
412 (unsigned int)opcode->opcode[2],
413 (unsigned int)opcode->len);
437 x86_opcode_print(&insn->opcode, f, indent_level);
501 x86_opcode_print(&jmpfar->opcode, f, indent_level)
    [all...]
  /dalvik/vm/compiler/template/mips/
funopNarrower.S 9 * long-to-float opcode.
24 .L${opcode}_set_vreg:
30 .L${opcode}_set_vreg_f:
  /dalvik/vm/mterp/arm-vfp/
OP_CMPG_DOUBLE.S 33 GET_INST_OPCODE(ip) @ extract opcode from rINST
37 b .L${opcode}_finish @ argh
40 .L${opcode}_finish:
OP_CMPG_FLOAT.S 33 GET_INST_OPCODE(ip) @ extract opcode from rINST
37 b .L${opcode}_finish @ argh
40 .L${opcode}_finish:
OP_CMPL_DOUBLE.S 33 GET_INST_OPCODE(ip) @ extract opcode from rINST
37 b .L${opcode}_finish @ argh
40 .L${opcode}_finish:
OP_CMPL_FLOAT.S 33 GET_INST_OPCODE(ip) @ extract opcode from rINST
37 b .L${opcode}_finish @ argh
40 .L${opcode}_finish:
  /dalvik/vm/mterp/armv5te/
OP_AGET_WIDE.S 19 bcc .L${opcode}_finish @ okay, continue below
26 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_APUT_WIDE.S 20 bcc .L${opcode}_finish @ okay, continue below
27 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHL_LONG_2ADDR.S 22 b .L${opcode}_finish
25 .L${opcode}_finish:
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHR_LONG_2ADDR.S 22 b .L${opcode}_finish
25 .L${opcode}_finish:
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_USHR_LONG_2ADDR.S 22 b .L${opcode}_finish
25 .L${opcode}_finish:
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /dalvik/vm/mterp/armv6t2/
OP_SHL_LONG_2ADDR.S 21 b .L${opcode}_finish
24 .L${opcode}_finish:
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHR_LONG_2ADDR.S 21 b .L${opcode}_finish
24 .L${opcode}_finish:
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_USHR_LONG_2ADDR.S 21 b .L${opcode}_finish
24 .L${opcode}_finish:
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /dalvik/vm/mterp/mips/
OP_MUL_LONG.S 34 b .L${opcode}_finish
37 .L${opcode}_finish:
38 GET_INST_OPCODE(t0) # extract opcode from rINST
unflopWider.S 23 .L${opcode}_set_vreg:
28 .L${opcode}_set_vreg:
31 GET_INST_OPCODE(t0) # extract opcode from rINST
  /dalvik/vm/mterp/x86/
bindivLit16.S 17 jne .L${opcode}_continue_div
19 jne .L${opcode}_continue_div
27 .L${opcode}_continue_div:
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.cpp 69 unsigned char opCode = firstByte & opCodeMask;
116 frame.opCode = static_cast<WebSocketFrame::OpCode>(opCode);
148 ASSERT(!(opCode & ~opCodeMask)); // Checks whether "opCode" fits in the range of opCodes.
151 frameData.at(0) = (final ? finalBit : 0) | (compress ? compressBit : 0) | opCode;
177 : opCode(OpCodeInvalid)
188 WebSocketFrame::WebSocketFrame(OpCode opCode, const char* payload, size_t payloadLength, Flags flags
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 27 import javassist.bytecode.Opcode;
34 public class SubroutineScanner implements Opcode {
84 int opcode = iter.byteAt(pos); local
86 if (opcode == TABLESWITCH) {
92 if (opcode == LOOKUPSWITCH) {
99 if (Util.isReturn(opcode) || opcode == RET || opcode == ATHROW)
102 if (Util.isJumpInstruction(opcode)) {
104 if (opcode == JSR || opcode == JSR_W)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
OffsetInstruction.java 32 protected OffsetInstruction(Opcode opcode) {
33 super(opcode);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py 72 def __init__(self, opcode):
73 self.opcode = opcode
159 opcode = (first_byte >> 5) & 0x7
160 block = _ControlBlock(opcode)
162 # TODO(bashi): Support more opcode
163 if opcode == _MUX_OPCODE_ADD_CHANNEL_RESPONSE:
177 elif opcode == _MUX_OPCODE_DROP_CHANNEL:
190 elif opcode == _MUX_OPCODE_FLOW_CONTROL:
198 elif opcode == _MUX_OPCODE_NEW_CHANNEL_SLOT
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_context.c 477 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_LIST)
485 ret->header.opcode = header->opcode;
499 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_INFO)
510 ret->header.opcode = header->opcode;
526 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_BLOCK)
537 ret->header.opcode = header->opcode;
554 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_STEP
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkScriptRuntime.cpp 62 bool SkScriptRuntime::executeTokens(unsigned char* opCode) {
70 switch ((op = (SkScriptEngine2::TypeOp) *opCode++)) {
86 memcpy(&index, opCode, sizeof(index));
87 opCode += sizeof(index);
91 memcpy(&ref, opCode, sizeof(ref));
92 opCode += sizeof(ref);
101 memcpy(&ref, opCode, sizeof(ref));
102 opCode += sizeof(ref);
110 memcpy(&ref, opCode, sizeof(ref));
111 opCode += sizeof(ref)
    [all...]

Completed in 894 milliseconds

<<11121314151617181920>>