/external/llvm/lib/Target/X86/ |
D | X86CodeEmitter.cpp | 72 const MCInstrDesc *Desc) const; 76 const MCInstrDesc *Desc) const; 82 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc); 143 const MCInstrDesc &Desc = I->getDesc(); in runOnMachineFunction() local 144 emitInstruction(*I, &Desc); in runOnMachineFunction() 146 if (Desc.getOpcode() == X86::MOVPC32r) in runOnMachineFunction() 161 const MCInstrDesc &Desc = MI.getDesc(); in determineREX() local 164 if ((Desc.TSFlags & X86II::FormMask) == X86II::Pseudo) in determineREX() 166 if (Desc.TSFlags & X86II::REX_W) in determineREX() 169 unsigned NumOps = Desc.getNumOperands(); in determineREX() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinterDwarf.cpp | 36 void AsmPrinter::EmitSLEB128(int Value, const char *Desc) const { in EmitSLEB128() 37 if (isVerbose() && Desc) in EmitSLEB128() 38 OutStreamer.AddComment(Desc); in EmitSLEB128() 44 void AsmPrinter::EmitULEB128(unsigned Value, const char *Desc, in EmitULEB128() argument 46 if (isVerbose() && Desc) in EmitULEB128() 47 OutStreamer.AddComment(Desc); in EmitULEB128() 95 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const { in EmitEncodingByte() 97 if (Desc != 0) in EmitEncodingByte() 98 OutStreamer.AddComment(Twine(Desc)+" Encoding = " + in EmitEncodingByte()
|
/external/skia/src/gpu/gl/ |
D | GrGLTexture.h | 62 struct Desc { struct 73 const Desc& textureDesc, argument 74 const GrGLRenderTarget::Desc& rtDesc); 78 const Desc& textureDesc); 122 const Desc& textureDesc, 123 const GrGLRenderTarget::Desc* rtDesc);
|
D | GrGLTexture.cpp | 28 const Desc& textureDesc, in init() 29 const GrGLRenderTarget::Desc* rtDesc) { in init() 53 const Desc& textureDesc) in GrGLTexture() 62 const Desc& textureDesc, in GrGLTexture() 63 const GrGLRenderTarget::Desc& rtDesc) in GrGLTexture()
|
D | GrGLRenderTarget.h | 28 struct Desc { struct 39 const Desc& desc, argument 46 const Desc& desc, 105 void init(const Desc& desc, const GrGLIRect& viewport, GrGLTexID* texID);
|
D | GrGLRenderTarget.cpp | 18 void GrGLRenderTarget::init(const Desc& desc, in init() 31 const Desc& desc, in GrGLRenderTarget() 55 const Desc& desc, in GrGLRenderTarget()
|
D | GrGpuGL.h | 225 bool uploadTexData(const GrGLTexture::Desc& desc, 234 GrGLRenderTarget::Desc* desc);
|
/external/llvm/include/llvm/MC/ |
D | MCInstrInfo.h | 27 const MCInstrDesc *Desc; // Raw array to allow static init'n variable 37 Desc = D; in InitMCInstrInfo() 50 return Desc[Opcode]; in get()
|
D | MCRegisterInfo.h | 148 const MCRegisterDesc *Desc; // Pointer to the descriptor array 239 Desc = D; in InitMCRegisterInfo() 299 return Desc[RegNo];
|
D | SubtargetFeature.h | 36 const char *Desc; // Help descriptor member
|
/external/llvm/include/llvm/Support/ |
D | Registry.h | 22 const char *Name, *Desc; variable 27 : Name(N), Desc(D), Ctor(C) in SimpleRegistryEntry() 31 const char *getDesc() const { return Desc; } in getDesc() 198 Add(const char *Name, const char *Desc) in Add() argument 199 : Entry(Name, Desc, CtorFn), Node(Entry) {} in Add()
|
D | CommandLine.h | 269 const char *Desc; member 270 desc(const char *Str) : Desc(Str) {} in desc() 271 void apply(Option &O) const { O.setDescription(Desc); } in apply() 277 const char *Desc; member 278 value_desc(const char *Str) : Desc(Str) {} in value_desc() 279 void apply(Option &O) const { O.setValueStr(Desc); } in apply() 458 ValuesClass(const char *EnumName, DataType Val, const char *Desc, 461 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc))); 483 const char *Desc, ...) { 485 va_start(ValueArgs, Desc); [all …]
|
/external/llvm/include/llvm/ADT/ |
D | Statistic.h | 38 const char *Desc; variable 44 const char *getDesc() const { return Desc; } in getDesc() 48 Name = name; Desc = desc; in construct()
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MCCodeEmitter.cpp | 126 const MCInst &MI, const MCInstrDesc &Desc, 134 const MCInst &MI, const MCInstrDesc &Desc, 444 const MCInstrDesc &Desc, in EmitVEXOpcodePrefix() argument 573 unsigned NumOps = Desc.getNumOperands(); in EmitVEXOpcodePrefix() 575 if (NumOps > 1 && Desc.getOperandConstraint(1, MCOI::TIED_TO) == 0) in EmitVEXOpcodePrefix() 577 else if (NumOps > 3 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0) { in EmitVEXOpcodePrefix() 578 assert(Desc.getOperandConstraint(NumOps - 1, MCOI::TIED_TO) == 1); in EmitVEXOpcodePrefix() 728 const MCInstrDesc &Desc) { in DetermineREXPrefix() argument 738 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1; in DetermineREXPrefix() 855 const MCInstrDesc &Desc, in EmitOpcodePrefix() argument [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | LexicalScopes.h | 160 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A), in LexicalScope() 173 const MDNode *getDesc() const { return Desc; } in getDesc() 175 const MDNode *getScopeNode() const { return Desc; } in getScopeNode() 235 AssertingVH<const MDNode> Desc; // Debug info descriptor. variable
|
D | AsmPrinter.h | 370 void EmitSLEB128(int Value, const char *Desc = 0) const; 373 void EmitULEB128(unsigned Value, const char *Desc = 0, 383 void EmitEncodingByte(unsigned Val, const char *Desc = 0) const;
|
/external/jhead/ |
D | gpsinfo.c | 79 printf("tag %s format not defined", GpsTags[i].Desc); in GpsTagToTagTableEntry() 97 printf("tag %s format not defined", GpsTags[i].Desc); in GpsTagToFormatType() 111 if (strcmp(GpsTags[i].Desc, tagName) == 0) { in GpsTagNameToValue() 112 printf("found GPS tag %s val %d", GpsTags[i].Desc, GpsTags[i].Tag); in GpsTagNameToValue() 289 printf(" %s =", GpsTags[Tag].Desc); in ProcessGpsInfo()
|
/external/llvm/lib/TableGen/ |
D | TableGenBackend.cpp | 28 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { in emitSourceFileHeader() argument 31 printLine(OS, "|* " + Desc, ' ', "*|"); in emitSourceFileHeader()
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | CheckerRegistry.h | 86 StringRef Desc; member 89 : Initialize(fn), FullName(name), Desc(desc) {} in CheckerInfo()
|
/external/mesa3d/docs/ |
D | README.3DFX | 92 Desc: force single-TMU 98 Desc: max # of buffers allowed to build up 104 Desc: number of vertical retraces to wait before swapping 109 Desc: SLI/AA setup 127 Desc: ? 132 Desc: avoid installing signals 137 Desc: verbose to stderr 142 Desc: do not snap vertices inside Mesa 147 Desc: try to use pointcast palette 152 Desc: disable 6666 palette [all …]
|
/external/llvm/include/llvm/TableGen/ |
D | TableGenBackend.h | 25 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
|
/external/llvm/lib/Analysis/ |
D | AliasAnalysisCounter.cpp | 43 void printLine(const char *Desc, unsigned Val, unsigned Sum) { in printLine() argument 44 errs() << " " << Val << " " << Desc << " responses (" in printLine()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430InstrInfo.cpp | 293 const MCInstrDesc &Desc = MI->getDesc(); in GetInstSizeInBytes() local 295 switch (Desc.TSFlags & MSP430II::SizeMask) { in GetInstSizeInBytes() 297 switch (Desc.getOpcode()) { in GetInstSizeInBytes()
|
/external/llvm/lib/Target/MBlaze/MCTargetDesc/ |
D | MBlazeMCCodeEmitter.cpp | 181 const MCInstrDesc &Desc = MCII.get(Opcode); in EncodeInstruction() local 182 uint64_t TSFlags = Desc.TSFlags; in EncodeInstruction()
|
/external/llvm/lib/Target/ |
D | TargetData.cpp | 159 std::string TargetData::parseSpecifier(StringRef Desc, TargetData *td) { in parseSpecifier() argument 164 while (!Desc.empty()) { in parseSpecifier() 165 std::pair<StringRef, StringRef> Split = Desc.split('-'); in parseSpecifier() 167 Desc = Split.second; in parseSpecifier()
|