HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 201 - 225 of 1561) sorted by null

1 2 3 4 5 6 7 891011>>

  /development/ndk/platforms/android-L/arch-mips64/include/asm/
inst.h 440 BITFIELD_FIELD(unsigned int opcode : 6,
446 BITFIELD_FIELD(unsigned int opcode : 6,
455 BITFIELD_FIELD(unsigned int opcode : 6,
464 BITFIELD_FIELD(unsigned int opcode : 6,
474 BITFIELD_FIELD(unsigned int opcode : 6,
485 BITFIELD_FIELD(unsigned int opcode : 6,
496 BITFIELD_FIELD(unsigned int opcode : 6,
509 BITFIELD_FIELD(unsigned int opcode : 6,
521 BITFIELD_FIELD(unsigned int opcode : 6,
529 BITFIELD_FIELD(unsigned int opcode : 6
    [all...]
  /external/kernel-headers/original/uapi/asm-mips/asm/
inst.h 38 * func field of spec opcode.
60 * func field of spec2 opcode.
71 * func field of spec3 opcode.
495 BITFIELD_FIELD(unsigned int opcode : 6, /* Jump format */
501 BITFIELD_FIELD(unsigned int opcode : 6,
509 BITFIELD_FIELD(unsigned int opcode : 6,
517 BITFIELD_FIELD(unsigned int opcode : 6,
526 BITFIELD_FIELD(unsigned int opcode : 6,
536 BITFIELD_FIELD(unsigned int opcode : 6,
546 BITFIELD_FIELD(unsigned int opcode : 6
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/asm/
inst.h 445 BITFIELD_FIELD(unsigned int opcode : 6,
451 BITFIELD_FIELD(unsigned int opcode : 6,
460 BITFIELD_FIELD(unsigned int opcode : 6,
469 BITFIELD_FIELD(unsigned int opcode : 6,
479 BITFIELD_FIELD(unsigned int opcode : 6,
490 BITFIELD_FIELD(unsigned int opcode : 6,
501 BITFIELD_FIELD(unsigned int opcode : 6,
514 BITFIELD_FIELD(unsigned int opcode : 6,
526 BITFIELD_FIELD(unsigned int opcode : 6,
534 BITFIELD_FIELD(unsigned int opcode : 6
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/asm/
inst.h 445 BITFIELD_FIELD(unsigned int opcode : 6,
451 BITFIELD_FIELD(unsigned int opcode : 6,
460 BITFIELD_FIELD(unsigned int opcode : 6,
469 BITFIELD_FIELD(unsigned int opcode : 6,
479 BITFIELD_FIELD(unsigned int opcode : 6,
490 BITFIELD_FIELD(unsigned int opcode : 6,
501 BITFIELD_FIELD(unsigned int opcode : 6,
514 BITFIELD_FIELD(unsigned int opcode : 6,
526 BITFIELD_FIELD(unsigned int opcode : 6,
534 BITFIELD_FIELD(unsigned int opcode : 6
    [all...]
  /external/bluetooth/bluedroid/stack/avrc/
avrc_bld_ct.c 131 UINT8 opcode; local
133 opcode = avrc_opcode_from_pdu(p_cmd->pdu);
134 AVRC_TRACE_API("avrc_bld_init_cmd_buffer: pdu=%x, opcode=%x", p_cmd->pdu, opcode);
136 switch (opcode)
154 p_pkt->event = opcode;
160 if (opcode != AVRC_OP_PASS_THRU)
163 switch (opcode)
176 p_cmd->cmd.opcode = opcode;
    [all...]
avrc_utils.c 191 ** Description This function returns the opcode of the given pdu
198 UINT8 opcode = 0; local
204 opcode = AVRC_OP_PASS_THRU;
208 opcode = AVRC_OP_VENDOR;
212 return opcode;
219 ** Description This function returns the opcode of the given pdu
224 BOOLEAN avrc_is_valid_opcode(UINT8 opcode)
227 switch (opcode)
  /external/proguard/src/proguard/optimize/peephole/
GotoCommonCodeReplacer.java 101 byte opcode = branchInstruction.opcode;
102 if ((opcode == InstructionConstants.OP_GOTO ||
103 opcode == InstructionConstants.OP_GOTO_W) &&
136 new BranchInstruction(opcode, newBranchOffset).shrink();
226 * Returns whether the given opcode represents a pop instruction that must
229 private boolean isPop(byte opcode)
231 return opcode == InstructionConstants.OP_POP ||
232 opcode == InstructionConstants.OP_POP2 ||
233 opcode == InstructionConstants.OP_ARRAYLENGTH
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsn.java 36 /** the opcode; one of the constants from {@link Dops} */
37 private final Dop opcode; field in class:DalvInsn
59 Dop opcode; local
62 opcode = reference ? Dops.MOVE_OBJECT :
65 opcode = reference ? Dops.MOVE_OBJECT_FROM16 :
68 opcode = reference ? Dops.MOVE_OBJECT_16 :
72 return new SimpleInsn(opcode, position,
86 * @param opcode the opcode; one of the constants from {@link Dops}
92 public DalvInsn(Dop opcode, SourcePosition position
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 39 /** the opcode; one of the constants from {@link Dops} */
40 private final Dop opcode; field in class:DalvInsn
62 Dop opcode; local
65 opcode = reference ? Dops.MOVE_OBJECT :
68 opcode = reference ? Dops.MOVE_OBJECT_FROM16 :
71 opcode = reference ? Dops.MOVE_OBJECT_16 :
75 return new SimpleInsn(opcode, position,
89 * @param opcode the opcode; one of the constants from {@link Dops}
95 public DalvInsn(Dop opcode, SourcePosition position
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
packrender.h 76 #define __GLX_BEGIN_VARIABLE(opcode,size) \
81 __GLX_PUT_SHORT(2,opcode)
83 #define __GLX_BEGIN_VARIABLE_LARGE(opcode,size) \
86 __GLX_PUT_LONG(4,opcode)
88 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL(opcode,size) \
93 __GLX_PUT_SHORT(2,opcode); \
98 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL(opcode,size) \
101 __GLX_PUT_LONG(4,opcode); \
106 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL_3D(opcode,size) \
111 __GLX_PUT_SHORT(2,opcode); \
    [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...]
  /external/chromium_org/v8/src/compiler/x64/
instruction-selector-x64.cc 31 switch (node->opcode()) {
40 switch (node->opcode()) {
65 ArchOpcode opcode; local
69 opcode = kX64Movss;
72 opcode = kX64Movsd;
76 opcode = typ == kTypeInt32 ? kX64Movsxbl : kX64Movzxbl;
79 opcode = typ == kTypeInt32 ? kX64Movsxwl : kX64Movzxwl;
82 opcode = kX64Movl;
86 opcode = kX64Movq;
94 Emit(opcode | AddressingModeField::encode(kMode_MRI)
135 ArchOpcode opcode; local
694 InstructionCode opcode; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.java 38 /** the opcode; one of the constants from {@link Dops} */
39 private final Dop opcode; field in class:DalvInsn
61 Dop opcode; local
64 opcode = reference ? Dops.MOVE_OBJECT :
67 opcode = reference ? Dops.MOVE_OBJECT_FROM16 :
70 opcode = reference ? Dops.MOVE_OBJECT_16 :
74 return new SimpleInsn(opcode, position,
88 * @param opcode the opcode; one of the constants from {@link Dops}
94 public DalvInsn(Dop opcode, SourcePosition position
    [all...]
  /external/mesa3d/src/glx/
packrender.h 76 #define __GLX_BEGIN_VARIABLE(opcode,size) \
81 __GLX_PUT_SHORT(2,opcode)
83 #define __GLX_BEGIN_VARIABLE_LARGE(opcode,size) \
86 __GLX_PUT_LONG(4,opcode)
88 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL(opcode,size) \
93 __GLX_PUT_SHORT(2,opcode); \
98 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL(opcode,size) \
101 __GLX_PUT_LONG(4,opcode); \
106 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL_3D(opcode,size) \
111 __GLX_PUT_SHORT(2,opcode); \
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs.h 144 fs_inst(enum opcode opcode);
145 fs_inst(enum opcode opcode, fs_reg dst);
146 fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0);
147 fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
148 fs_inst(enum opcode opcode, fs_reg dst
157 enum opcode opcode; \/* BRW_OPCODE_* or FS_OPCODE_* *\/ member in class:fs_inst
    [all...]
brw_vec4.h 161 vec4_instruction(vec4_visitor *v, enum opcode opcode,
170 enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */ member in class:brw::vec4_instruction
334 vec4_instruction *emit(enum opcode opcode);
336 vec4_instruction *emit(enum opcode opcode, dst_reg dst, src_reg src0);
338 vec4_instruction *emit(enum opcode opcode, dst_reg dst
    [all...]
brw_fs.cpp 57 this->opcode = BRW_OPCODE_NOP;
71 fs_inst::fs_inst(enum opcode opcode)
74 this->opcode = opcode;
77 fs_inst::fs_inst(enum opcode opcode, fs_reg dst)
80 this->opcode = opcode;
87 fs_inst::fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_getsrclines.c 191 /* The opcode base. */
194 /* Remember array with the standard opcode length (-1 to account for
195 the opcode with value zero not being mentioned). */
338 /* Apply the "operation advance" from a special opcode
397 unsigned int opcode; local
401 /* Read the opcode. */
402 opcode = *linep++;
404 /* Is this a special opcode? */
405 if (likely (opcode >= opcode_base))
407 /* Yes. Handling this is quite easy since the opcode valu
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 35 public class CodeAttribute extends AttributeInfo implements Opcode {
444 code[where] = (byte)Opcode.LDC_W;
487 int opcode = ci.byteAt(index); local
488 if (opcode < ILOAD)
490 else if (opcode < IASTORE) {
491 if (opcode < ILOAD_0) {
493 shiftIndex8(ci, index, opcode, lessThan, delta);
495 else if (opcode < IALOAD) {
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD);
499 else if (opcode < ISTORE
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs.h 144 fs_inst(enum opcode opcode);
145 fs_inst(enum opcode opcode, fs_reg dst);
146 fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0);
147 fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
148 fs_inst(enum opcode opcode, fs_reg dst
157 enum opcode opcode; \/* BRW_OPCODE_* or FS_OPCODE_* *\/ member in class:fs_inst
    [all...]
brw_vec4.h 161 vec4_instruction(vec4_visitor *v, enum opcode opcode,
170 enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */ member in class:brw::vec4_instruction
334 vec4_instruction *emit(enum opcode opcode);
336 vec4_instruction *emit(enum opcode opcode, dst_reg dst, src_reg src0);
338 vec4_instruction *emit(enum opcode opcode, dst_reg dst
    [all...]
brw_fs.cpp 57 this->opcode = BRW_OPCODE_NOP;
71 fs_inst::fs_inst(enum opcode opcode)
74 this->opcode = opcode;
77 fs_inst::fs_inst(enum opcode opcode, fs_reg dst)
80 this->opcode = opcode;
87 fs_inst::fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0
    [all...]
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 67 byte opcode = simpleInstruction.opcode;
75 switch (opcode)
110 byte opcode = constantInstruction.opcode;
113 switch (opcode)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hybi.py 61 opcode=None, payload=''):
66 self.opcode = opcode
102 def create_header(opcode, payload_length, fin, rsv1, rsv2, rsv3, mask):
109 if opcode < 0 or 0xf < opcode:
110 raise ValueError('Opcode out of range')
122 | opcode)
144 frame.opcode, len(frame.payload), frame.fin,
150 message, opcode=common.OPCODE_BINARY, fin=1, mask=False, frame_filters=[])
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 681 * Returns a JVM instruction opcode adapted to this Java type.
683 * @param opcode a JVM instruction opcode. This opcode must be one of ILOAD,
686 * @return an opcode that is similar to the given opcode, but adapted to
688 * <tt>opcode</tt> is IRETURN, this method returns FRETURN.
690 public int getOpcode(final int opcode) {
691 if (opcode == Opcodes.IALOAD || opcode == Opcodes.IASTORE) {
    [all...]

Completed in 784 milliseconds

1 2 3 4 5 6 7 891011>>