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

<<71727374757677787980>>

  /external/clang/lib/CodeGen/
CGObjCMac.cpp 760 /// opcode for captured block variables layout 'instructions'.
762 /// (field following the opcode).
814 enum BLOCK_LAYOUT_OPCODE opcode; member in class:__anon15810::CGObjCCommonMac::RUN_SKIP
817 RUN_SKIP(enum BLOCK_LAYOUT_OPCODE Opcode = BLOCK_LAYOUT_OPERATOR,
820 : opcode(Opcode), block_var_bytepos(BytePos), block_var_size(Size) {}
2225 enum BLOCK_LAYOUT_OPCODE opcode ; local
2330 enum BLOCK_LAYOUT_OPCODE opcode = RunSkipBlockVars[i].opcode; local
2381 enum BLOCK_LAYOUT_OPCODE opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); local
2421 enum BLOCK_LAYOUT_OPCODE opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); local
    [all...]
  /external/strace/
syscall.c 772 long opcode, offset_reg, tmp; local
782 opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(pc-sizeof(long)), 0);
792 * Unfortunately the opcode sizes of EXECUTE and SVC are differently,
793 * so that this doesn't work if a SVC opcode is part of an EXECUTE
794 * opcode. Since there is no way to find out the opcode size this
798 if ((opcode & 0xff00) == 0x0a00) {
799 /* SVC opcode */
800 scno = opcode & 0xff;
809 svc_addr = (void *) (opcode & 0xfff)
    [all...]
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /external/llvm/lib/IR/
Constants.cpp 1501 Instruction::CastOps opcode = local
    [all...]
  /external/robolectric/lib/test/
mockito-core-1.8.5.jar 
  /dalvik/dexdump/
DexDump.cpp 719 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) {
872 if (pDecInsn->opcode == OP_NOP) {
887 printf("|%04x: %s", insnIdx, dexGetOpcodeName(pDecInsn->opcode));
895 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) {
935 // The printed format varies a bit based on the actual opcode.
936 if (pDecInsn->opcode == OP_CONST_HIGH16) {
1104 Opcode opcode = dexOpcodeFromCodeUnit(instr); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 36 static nv50_ir::operation translateOpcode(uint opcode);
156 inline uint getOpcode() const { return insn->Instruction.Opcode; }
213 switch (insn->Instruction.Opcode) {
251 if (insn->Instruction.Opcode != TGSI_OPCODE_TEX &&
252 insn->Instruction.Opcode != TGSI_OPCODE_TXD)
449 static nv50_ir::operation translateOpcode(uint opcode)
451 switch (opcode) {
    [all...]
  /external/llvm/lib/CodeGen/
MachineLICM.cpp 102 // For each opcode, keep a list of potential CSE instructions.
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 36 static nv50_ir::operation translateOpcode(uint opcode);
156 inline uint getOpcode() const { return insn->Instruction.Opcode; }
213 switch (insn->Instruction.Opcode) {
251 if (insn->Instruction.Opcode != TGSI_OPCODE_TEX &&
252 insn->Instruction.Opcode != TGSI_OPCODE_TXD)
449 static nv50_ir::operation translateOpcode(uint opcode)
451 switch (opcode) {
    [all...]
  /external/openssh/
servconf.c 341 ServerOpCodes opcode; member in struct:__anon24076
482 return keywords[i].opcode;
724 ServerOpCodes opcode; local
740 opcode = parse_token(arg, filename, linenum, &flags);
746 if (*activep && opcode != sMatch)
759 switch (opcode) {
    [all...]
  /external/llvm/docs/
WritingAnLLVMBackend.rst 657 containing target instructions. An ``SDNode`` has an opcode, operands, type
693 * Opcode mnemonic
728 You should define a class for each instruction category and define each opcode
    [all...]
  /external/llvm/lib/Target/ARM/
ARMInstrFormats.td     [all...]
  /dalvik/vm/compiler/codegen/arm/
ArmLIR.h 311 #define isPseudoOpcode(opcode) ((int)(opcode) < 0)
646 /* Bit flags describing the behavior of each native opcode */
737 ArmOpcode opcode; member in struct:ArmEncodingMap
767 ArmOpcode opcode; member in struct:ArmLIR
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_drawpixels.c 86 if (inst[0].Opcode == OPCODE_MOV &&
87 inst[1].Opcode == OPCODE_END &&
233 p->Instructions[ic].Opcode = OPCODE_TEX;
243 p->Instructions[ic].Opcode = OPCODE_MOV;
253 p->Instructions[ic].Opcode = OPCODE_TEX;
265 p->Instructions[ic++].Opcode = OPCODE_END;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 152 char Opcode;
155 UnaryExprAST(char opcode, ExprAST *operand)
156 : Opcode(opcode), Operand(operand) {}
658 Function *F = TheHelper->getFunction(MakeLegalFunctionName(std::string("unary")+Opcode));
660 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 137 char Opcode;
140 UnaryExprAST(char opcode, ExprAST *operand)
141 : Opcode(opcode), Operand(operand) {}
643 Function *F = TheHelper->getFunction(MakeLegalFunctionName(std::string("unary")+Opcode));
645 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 81 /// slot number that the OPC_CheckComplexPat opcode drops the matched
203 // If this is the root of the dag we're matching, we emit a redundant opcode
300 // a single opcode check.
319 // Check that the current opcode lines up.
438 // If it is a named node, we must emit a 'Record' opcode.
471 // Depending on which variant we're generating code for, emit the root opcode
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 86 if (inst[0].Opcode == OPCODE_MOV &&
87 inst[1].Opcode == OPCODE_END &&
233 p->Instructions[ic].Opcode = OPCODE_TEX;
243 p->Instructions[ic].Opcode = OPCODE_MOV;
253 p->Instructions[ic].Opcode = OPCODE_TEX;
265 p->Instructions[ic++].Opcode = OPCODE_END;
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
d3basics.c 499 UChar opcode; local
560 opcode = *expr++;
561 switch (opcode) {
619 if (!get_Dwarf_Reg( &a1, opcode - DW_OP_breg0, regs ))
696 PUSH(opcode - DW_OP_lit0);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 81 # the STOP opcode, passing the object that is the result of unpickling.
144 TRUE = 'I01\n' # not an opcode; see INT docs in pickletools.py
145 FALSE = 'I00\n' # not an opcode; see INT docs in pickletools.py
249 # Return a PUT (BINPUT, LONG_BINPUT) opcode string, with argument i.
259 # Return a GET (BINGET, LONG_BINGET) opcode string, with argument i.
363 # use the more efficient NEWOBJ opcode, while still
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 81 # the STOP opcode, passing the object that is the result of unpickling.
144 TRUE = 'I01\n' # not an opcode; see INT docs in pickletools.py
145 FALSE = 'I00\n' # not an opcode; see INT docs in pickletools.py
249 # Return a PUT (BINPUT, LONG_BINPUT) opcode string, with argument i.
259 # Return a GET (BINGET, LONG_BINGET) opcode string, with argument i.
363 # use the more efficient NEWOBJ opcode, while still
    [all...]
  /art/runtime/
dex_file_verifier.cc 794 uint8_t opcode = *(ptr_++); local
795 switch (opcode) {
810 LOG(ERROR) << StringPrintf("Bad reg_num for opcode %x", opcode);
833 LOG(ERROR) << StringPrintf("Bad reg_num for opcode %x", opcode);
841 LOG(ERROR) << StringPrintf("Bad reg_num for opcode %x", opcode);
    [all...]
  /external/chromium_org/remoting/host/
input_injector_linux.cc 407 int opcode, event, error; local
408 if (!XQueryExtension(display_, "XInputExtension", &opcode, &event, &error)) {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 151 Token Parser::makeTokenAndAdvance(int code, NumericOp::Opcode val, int advance)
157 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance)
  /external/chromium_org/third_party/mesa/src/docs/
relnotes-7.9.html 119 <li><a href="https://bugs.freedesktop.org/show_bug.cgi?id=29013">Bug 29013</a> - [r300g] translate_rgb_op: unknown opcode ILLEGAL OPCODE</li>

Completed in 1125 milliseconds

<<71727374757677787980>>