/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_llvm.c | 175 unsigned opcode = emit_data->inst->Instruction.Opcode; local 176 unsigned dp_components = (opcode == TGSI_OPCODE_DP2 ? 2 : 177 (opcode == TGSI_OPCODE_DP3 ? 3 : 4)); 191 if (opcode == TGSI_OPCODE_DPH) {
|
/external/kernel-headers/original/linux/mmc/ |
mmc.h | 20 u32 opcode; member in struct:mmc_command 28 #define MMC_RSP_OPCODE (1 << 4) /* response contains opcode */
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_llvm.c | 175 unsigned opcode = emit_data->inst->Instruction.Opcode; local 176 unsigned dp_components = (opcode == TGSI_OPCODE_DP2 ? 2 : 177 (opcode == TGSI_OPCODE_DP3 ? 3 : 4)); 191 if (opcode == TGSI_OPCODE_DPH) {
|
/dalvik/vm/compiler/codegen/arm/ |
Assemble.cpp | 28 * opcode: ArmOpcode enum 29 * skeleton: pre-designated bit-pattern for this opcode 43 #define ENCODING_MAP(opcode, skeleton, k0, ds, de, k1, s1s, s1e, k2, s2s, s2e, \ 46 {k3, k3s, k3e}}, opcode, flags, name, fmt, size} [all...] |
/bionic/libc/netbsd/resolv/ |
res_debug.c | 166 ns_opcode opcode; local 182 opcode = (ns_opcode) ns_msg_getflag(*handle, ns_f_opcode); 196 p_section(section, opcode)); 245 u_int opcode, rcode, id; local 251 opcode = ns_msg_getflag(handle, ns_f_opcode); 264 ";; ->>HEADER<<- opcode: %s, status: %s, id: %d\n", 265 _res_opcodes[opcode], p_rcode((int)rcode), id); 289 p_section(ns_s_qd, (int)opcode), qdcount); 291 p_section(ns_s_an, (int)opcode), ancount); 293 p_section(ns_s_ns, (int)opcode), nscount) [all...] |
/dalvik/vm/compiler/codegen/mips/ |
ArchUtility.cpp | 228 switch(lir->opcode) { 297 buildInsnString(EncodingMap[lir->opcode].name, lir, opName, 299 buildInsnString(EncodingMap[lir->opcode].fmt, lir, buf, baseAddr, 354 /* 0x66 is an invalid opcode for mips. */
|
/external/chromium_org/net/websockets/ |
websocket_basic_stream_test.cc | 354 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, frames_[0]->header.opcode); 369 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, frames_[0]->header.opcode); 377 frames_[0]->header.opcode); 427 // All frames after the first have their opcode changed to Continuation. 431 // The input data is one frame with opcode Text, which arrives in three 444 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, frames_[0]->header.opcode); 446 // This test uses a loop to verify that the opcode for every frames generated 454 frames_[0]->header.opcode); 599 EXPECT_EQ(WebSocketFrameHeader::kOpCodePong, frames_[0]->header.opcode); 625 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, frames_[0]->header.opcode); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/ |
x86gas.pl | 25 # expand opcode with size suffix; 28 { my($opcode,@arg)=@_; 47 if ($#_==0) { &::emit($opcode); } 48 elsif ($#_==1 && $opcode =~ m/^(call|clflush|j|loop|set)/o) 49 { &::emit($opcode,@arg); } 50 else { &::emit($opcode.$suffix,@arg);}
|
/external/chromium_org/third_party/re2/re2/ |
bitstate.cc | 125 int op = prog_->inst(id)->opcode(); 171 switch (ip->opcode()) { 174 LOG(DFATAL) << "Unexpected opcode: " << ip->opcode() << " arg " << arg; 201 // One opcode is byte range; the other leads to match.
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/ |
x86arch.h | 227 unsigned char opcode[3]; /* opcode */ member in struct:x86_opcode 233 x86_opcode opcode; member in struct:x86_insn 252 * should set this and put the imm8 form as the "normal" opcode (in 254 * third byte of the opcode. 259 * generate a prefix. This is used for the ENTER opcode. 271 /* which opcode are we using? */ 282 x86_opcode opcode; member in struct:x86_jmpfar
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/ |
dwarf2-line.c | 117 dwarf_line_number_op opcode; member in struct:dwarf2_line_op 120 /* extended opcode */ 244 /* Create and add a new line opcode to a section, updating offset on insertion; 248 dwarf2_dbgfmt_append_line_op(yasm_section *sect, dwarf_line_number_op opcode, 254 line_op->opcode = opcode; 265 opcode == DW_LNS_advance_line); 271 /* Create and add a new extended line opcode to a section, updating offset on 283 line_op->opcode = DW_LNS_extended_op; 307 line_op->opcode = DW_LNS_extended_op 468 unsigned int opcode; local [all...] |
/external/grub/netboot/ |
etherboot.h | 269 unsigned short opcode; member in struct:arprequest 341 unsigned short opcode; member in struct:tftp_t 381 unsigned short opcode; member in struct:tftpreq_t
|
/external/llvm/lib/Target/R600/ |
R600InstrInfo.h | 60 bool isPlaceHolderOpcode(unsigned opcode) const; 61 bool isReductionOp(unsigned opcode) const; 62 bool isCubeOp(unsigned opcode) const; 64 /// \returns true if this \p Opcode represents an ALU instruction. 65 bool isALUInstr(unsigned Opcode) const; 66 bool hasInstrModifiers(unsigned Opcode) const; 67 bool isLDSInstr(unsigned Opcode) const; 69 bool isTransOnly(unsigned Opcode) const; 72 bool usesVertexCache(unsigned Opcode) const; 74 bool usesTextureCache(unsigned Opcode) const [all...] |
/external/openssl/crypto/perlasm/ |
x86gas.pl | 25 # expand opcode with size suffix; 28 { my($opcode,@arg)=@_; 47 if ($#_==0) { &::emit($opcode); } 48 elsif ($#_==1 && $opcode =~ m/^(call|clflush|j|loop|set)/o) 49 { &::emit($opcode,@arg); } 50 else { &::emit($opcode.$suffix,@arg);}
|
/external/regex-re2/re2/ |
bitstate.cc | 125 int op = prog_->inst(id)->opcode(); 171 switch (ip->opcode()) { 174 LOG(DFATAL) << "Unexpected opcode: " << ip->opcode() << " arg " << arg; 201 // One opcode is byte range; the other leads to match.
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrVisitor.java | 745 final int opcode = 0xFF & code [ip]; local 748 //if (trace3) m_log.trace3 ("parse", MNEMONICS [opcode]); 749 // "visitor.visit (opcode, wide, ip, null)": 751 { // "opcode visit" logic: 762 switch (opcode) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_eu_emit.c | 492 insn->bits3.urb_gen5.opcode = 1; /* FF_SYNC */ 517 insn->bits3.urb_gen7.opcode = 0; /* URB_WRITE_HWORD */ 525 insn->bits3.urb_gen5.opcode = 0; /* URB_WRITE */ 532 insn->bits3.urb.opcode = 0; /* ? */ 700 brw_next_insn(struct brw_compile *p, GLuint opcode) 725 insn->header.opcode = opcode; 730 GLuint opcode, 734 struct brw_instruction *insn = next_insn(p, opcode); 741 GLuint opcode, [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
vdbeaux.c | 130 ** op The opcode for this instruction 152 pOp->opcode = (u8)op; 161 /* Any program that uses the OP_ParseSchema opcode needs to lock 188 ** Add an opcode that includes the p4 value as a pointer. 191 Vdbe *p, /* Add the opcode to this VM */ 192 int op, /* The new opcode */ 205 ** Add an opcode that includes the p4 value as an integer. 208 Vdbe *p, /* Add the opcode to this VM */ 209 int op, /* The new opcode */ 369 int opcode = pOp->opcode local 412 u8 opcode = pOp->opcode; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_eu_emit.c | 492 insn->bits3.urb_gen5.opcode = 1; /* FF_SYNC */ 517 insn->bits3.urb_gen7.opcode = 0; /* URB_WRITE_HWORD */ 525 insn->bits3.urb_gen5.opcode = 0; /* URB_WRITE */ 532 insn->bits3.urb.opcode = 0; /* ? */ 700 brw_next_insn(struct brw_compile *p, GLuint opcode) 725 insn->header.opcode = opcode; 730 GLuint opcode, 734 struct brw_instruction *insn = next_insn(p, opcode); 741 GLuint opcode, [all...] |
/external/chromium_org/third_party/freetype/src/truetype/ |
ttinterp.c | 8277 FT_Byte opcode = CUR.opcode; local [all...] |
/external/freetype/src/truetype/ |
ttinterp.c | 8277 FT_Byte opcode = CUR.opcode; local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
DebugInfoDecoder.java | 294 int opcode = bs.readByte() & 0xff; local 296 switch (opcode) { 399 if (opcode < DBG_FIRST_SPECIAL) { 401 "Invalid extended opcode encountered " 402 + opcode); 405 int adjopcode = opcode - DBG_FIRST_SPECIAL;
|
/dalvik/vm/compiler/codegen/arm/Thumb/ |
Gen.cpp | 70 int opcode = TEMPLATE_PERIODIC_PROFILING; local 72 (int) gDvmJit.codeCache + templateEntryOffsets[opcode], 73 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]); 75 (int) gDvmJit.codeCache + templateEntryOffsets[opcode], 76 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
|
/external/chromium/sdch/open-vcdiff/src/ |
codetable.cc | 56 { { R, // opcode 0 78 { N, // opcode 0 100 { 0, // opcode 0 122 { 0, // opcode 0 144 { 0, // opcode 0 166 { 0, // opcode 0 188 bool VCDiffCodeTableData::ValidateOpcode(int opcode, 198 LOG(ERROR) << "VCDiff: Bad code table; opcode " << opcode << " has invalid " 204 LOG(ERROR) << "VCDiff: Bad code table; opcode " << opcode << " has invalid [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_blit.c | 408 uint32_t opcode, br13, blit_cmd; local 435 opcode = XY_SETUP_BLT_CMD; 437 opcode |= XY_BLT_WRITE_ALPHA | XY_BLT_WRITE_RGB; 440 opcode |= XY_DST_TILED; 453 OUT_BATCH(opcode);
|