/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/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...] |
/dalvik/vm/mterp/mips/ |
OP_EXECUTE_INLINE.S | 21 bnez a2, .L${opcode}_debugmode # yes - take slow path 22 .L${opcode}_resume: 27 BAL(.L${opcode}_continue) # make call; will return after 32 GET_INST_OPCODE(t0) # extract opcode from rINST 47 .L${opcode}_continue: 83 .L${opcode}_debugmode: 86 beqz v0, .L${opcode}_resume # did it resolve? no, just move on 95 BAL(.L${opcode}_continue) # make call; will return after 103 GET_INST_OPCODE(t0) # extract opcode from rINST
|
OP_EXECUTE_INLINE_RANGE.S | 19 bnez a2, .L${opcode}_debugmode # yes - take slow path 20 .L${opcode}_resume: 24 BAL(.L${opcode}_continue) # make call; will return after 28 GET_INST_OPCODE(t0) # extract opcode from rINST 39 .L${opcode}_continue: 70 .L${opcode}_debugmode: 73 beqz v0, .L${opcode}_resume # did it resolve? no, just move on 83 BAL(.L${opcode}_continue) # make call; will return after 91 GET_INST_OPCODE(t0) # extract opcode from rINST
|
OP_CONST_CLASS.S | 12 bnez v0, .L${opcode}_resolve # v0!=0 => resolved-ok 26 .L${opcode}_resolve: 28 GET_INST_OPCODE(t0) # extract opcode from rINST
|
OP_CONST_STRING.S | 12 bnez v0, .L${opcode}_resolve 25 .L${opcode}_resolve: 27 GET_INST_OPCODE(t0) # extract opcode from rINST
|
OP_CONST_STRING_JUMBO.S | 14 bnez v0, .L${opcode}_resolve 28 .L${opcode}_resolve: 30 GET_INST_OPCODE(t1) # extract opcode from rINST
|
/external/bluetooth/bluedroid/stack/avrc/ |
avrc_utils.c | 192 ** Description This function returns the opcode of the given pdu 199 UINT8 opcode = 0; local 205 opcode = AVRC_OP_PASS_THRU; 209 opcode = AVRC_OP_VENDOR; 213 return opcode; 220 ** Description This function returns the opcode of the given pdu 225 BOOLEAN avrc_is_valid_opcode(UINT8 opcode) 228 switch (opcode)
|
/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/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...] |
/dalvik/vm/compiler/ |
InlineTransformation.cpp | 66 (moveResultMIR->dalvikInsn.opcode != OP_MOVE_RESULT && 67 moveResultMIR->dalvikInsn.opcode != OP_MOVE_RESULT_OBJECT && 68 moveResultMIR->dalvikInsn.opcode != OP_MOVE_RESULT_WIDE)) { 72 int dfFlags = dvmCompilerDataFlowAttributes[getterInsn.opcode]; 76 ALOGE("opcode %d has DF_UA set (not expected)", getterInsn.opcode); 95 newGetterMIR->width = dexGetWidthFromOpcode(getterInsn.opcode); 112 invokeMIR->dalvikInsn.opcode = (Opcode)kMirOpCheckInlinePrediction; 159 int dfFlags = dvmCompilerDataFlowAttributes[setterInsn.opcode]; 317 Opcode opcode = lastMIRInsn->dalvikInsn.opcode; local [all...] |
/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/openssh/ |
ttymodes.c | 352 int opcode, baud; local 381 opcode = packet_get_char(); 382 switch (opcode) { 426 debug("Ignoring unsupported tty mode opcode %d (0x%x)", 427 opcode, opcode); 436 if (opcode > 0 && opcode < 128) { 440 } else if (opcode >= 128 && opcode < 160) [all...] |
/bionic/libc/kernel/common/linux/ |
ublock.h | 39 __u32 opcode; member in struct:ublock_in_header 44 __u32 opcode; member in struct:ublock_out_header
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
FixedSizeInsn.java | 38 * @param opcode the opcode; one of the constants from {@link Dops} 44 public FixedSizeInsn(Dop opcode, SourcePosition position, 46 super(opcode, position, registers);
|
/dalvik/dx/src/com/android/dx/dex/code/ |
FixedSizeInsn.java | 39 * @param opcode the opcode; one of the constants from {@link Dops} 45 public FixedSizeInsn(Dop opcode, SourcePosition position, 47 super(opcode, position, registers);
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
FiveRegisterDecodedInstruction.java | 43 public FiveRegisterDecodedInstruction(InstructionCodec format, int opcode, 46 super(format, opcode, index, indexType, target, literal);
|
FourRegisterDecodedInstruction.java | 40 public FourRegisterDecodedInstruction(InstructionCodec format, int opcode, 43 super(format, opcode, index, indexType, target, literal);
|
ThreeRegisterDecodedInstruction.java | 37 public ThreeRegisterDecodedInstruction(InstructionCodec format, int opcode, 40 super(format, opcode, index, indexType, target, literal);
|