/external/llvm/lib/Target/R600/MCTargetDesc/ |
D | SIMCCodeEmitter.cpp | 42 bool isSrcOperand(const MCInstrDesc &Desc, unsigned OpNo) const; 79 bool SIMCCodeEmitter::isSrcOperand(const MCInstrDesc &Desc, in isSrcOperand() argument 81 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSrcOperand() 187 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in EncodeInstruction() local 188 unsigned bytes = Desc.getSize(); in EncodeInstruction() 201 if (!isSrcOperand(Desc, i)) in EncodeInstruction() 204 int RCID = Desc.OpInfo[i].RegClass; in EncodeInstruction() 274 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in getMachineOpValue() local 275 if (isSrcOperand(Desc, OpNo)) { in getMachineOpValue() 276 int RCID = Desc.OpInfo[OpNo].RegClass; in getMachineOpValue() [all …]
|
D | R600MCCodeEmitter.cpp | 92 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in EncodeInstruction() local 99 } else if (IS_VTX(Desc)) { in EncodeInstruction() 109 } else if (IS_TEX(Desc)) { in EncodeInstruction() 136 ((Desc.TSFlags & R600_InstFlag::OP1) || in EncodeInstruction() 137 Desc.TSFlags & R600_InstFlag::OP2)) { in EncodeInstruction()
|
/external/skia/src/gpu/effects/ |
D | GrTextureStripAtlas.h | 27 struct Desc { struct 28 Desc() { memset(this, 0, sizeof(*this)); } in Desc() argument 38 static GrTextureStripAtlas* GetAtlas(const Desc& desc); argument 96 GrTextureStripAtlas(Desc desc); 141 class Key : public GrMurmur3HashKey<sizeof(GrTextureStripAtlas::Desc)> {}; 167 const Desc fDesc;
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_mutexset.h | 26 struct Desc { struct 39 Desc Get(uptr i) const; argument 48 Desc descs_[kMaxSize]; 65 MutexSet::Desc MutexSet::Get(uptr i) const { return Desc(); } in Get()
|
/external/llvm/lib/TableGen/ |
D | TableGenBackend.cpp | 35 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { in emitSourceFileHeader() argument 44 PosE = Pos + ((MAX_LINE_LEN > (Desc.size() - PSLen)) ? in emitSourceFileHeader() 45 Desc.size() : in emitSourceFileHeader() 47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix); in emitSourceFileHeader() 49 } while(Pos < Desc.size()); in emitSourceFileHeader()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinterDwarf.cpp | 43 void AsmPrinter::EmitSLEB128(int64_t Value, const char *Desc) const { in EmitSLEB128() 44 if (isVerbose() && Desc) in EmitSLEB128() 45 OutStreamer.AddComment(Desc); in EmitSLEB128() 51 void AsmPrinter::EmitULEB128(uint64_t Value, const char *Desc, in EmitULEB128() argument 53 if (isVerbose() && Desc) in EmitULEB128() 54 OutStreamer.AddComment(Desc); in EmitULEB128() 116 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const { in EmitEncodingByte() 118 if (Desc) in EmitEncodingByte() 119 OutStreamer.AddComment(Twine(Desc) + " Encoding = " + in EmitEncodingByte()
|
/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()
|
/external/skia/src/gpu/gl/ |
D | GrGLVertexBuffer.h | 20 typedef GrGLBufferImpl::Desc Desc; typedef 22 GrGLVertexBuffer(GrGLGpu* gpu, const Desc& desc);
|
D | GrGLIndexBuffer.h | 20 typedef GrGLBufferImpl::Desc Desc; typedef 22 GrGLIndexBuffer(GrGLGpu* gpu, const Desc& desc);
|
D | GrGLBufferImpl.h | 22 struct Desc { struct 28 GrGLBufferImpl(GrGLGpu*, const Desc&, GrGLenum bufferType); argument 50 Desc fDesc;
|
/external/llvm/include/llvm/Support/ |
D | Registry.h | 26 const char *Name, *Desc; variable 31 : Name(N), Desc(D), Ctor(C) in SimpleRegistryEntry() 35 const char *getDesc() const { return Desc; } in getDesc() 207 Add(const char *Name, const char *Desc) in Add() argument 208 : Entry(Name, Desc, CtorFn), Node(Entry) {} in Add()
|
D | Options.h | 96 static void registerOption(const char *ArgStr, const char *Desc, in registerOption() argument 98 cl::opt<ValT> *Option = new cl::opt<ValT>(ArgStr, cl::desc(Desc), in registerOption()
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86BaseInfo.h | 630 inline int getOperandBias(const MCInstrDesc& Desc) in getOperandBias() argument 632 unsigned NumOps = Desc.getNumOperands(); in getOperandBias() 634 if (NumOps > 1 && Desc.getOperandConstraint(1, MCOI::TIED_TO) == 0) in getOperandBias() 636 else if (NumOps > 3 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0 && in getOperandBias() 637 Desc.getOperandConstraint(3, MCOI::TIED_TO) == 1) in getOperandBias() 641 else if (NumOps > 3 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0 && in getOperandBias() 642 Desc.getOperandConstraint(NumOps - 1, MCOI::TIED_TO) == 1) in getOperandBias() 646 else if (NumOps > 2 && Desc.getOperandConstraint(NumOps - 2, MCOI::TIED_TO) == 0) in getOperandBias()
|
D | X86MCCodeEmitter.cpp | 157 const MCInst &MI, const MCInstrDesc &Desc, 164 const MCInst &MI, const MCInstrDesc &Desc, 589 const MCInstrDesc &Desc, in EmitVEXOpcodePrefix() argument 711 unsigned NumOps = Desc.getNumOperands(); in EmitVEXOpcodePrefix() 712 unsigned CurOp = X86II::getOperandBias(Desc); in EmitVEXOpcodePrefix() 989 const MCInstrDesc &Desc) { in DetermineREXPrefix() argument 999 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1; in DetermineREXPrefix() 1103 const MCInstrDesc &Desc, in EmitOpcodePrefix() argument 1131 if (unsigned REX = DetermineREXPrefix(MI, TSFlags, Desc)) in EmitOpcodePrefix() 1159 const MCInstrDesc &Desc = MCII.get(Opcode); in EncodeInstruction() local [all …]
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugArangeSet.cpp | 99 for (const auto &Desc : ArangeDescriptors) { in dump() local 100 OS << format("[0x%*.*" PRIx64 " -", hex_width, hex_width, Desc.Address) in dump() 102 hex_width, hex_width, Desc.getEndAddress()); in dump()
|
D | DWARFDebugAranges.cpp | 29 for (const auto &Desc : Set.descriptors()) { in extract() local 30 uint64_t LowPC = Desc.Address; in extract() 31 uint64_t HighPC = Desc.getEndAddress(); in extract()
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
D | d3d11_objects.h | 136 template<typename Base, typename Desc, typename Object = void> 139 Desc desc; 140 GalliumD3D11DescribedObject(GalliumD3D11Screen* device, Object* object, const Desc& desc) in GalliumD3D11DescribedObject() 144 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc) in GetDesc() 344 template<typename Base, typename Desc, D3D11_RESOURCE_DIMENSION Dim> 347 Desc desc; 349 …GalliumD3D11TypedResource(GalliumD3D11Screen* device, struct pipe_resource* resource, const Desc& … 357 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc) 602 template<typename Base, typename Desc, typename Object> 603 struct GalliumD3D11View : public GalliumD3D11DescribedObject<Base, Desc, Object> [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/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/include/llvm/CodeGen/ |
D | LexicalScopes.h | 50 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A), in LexicalScope() 60 const MDNode *getDesc() const { return Desc; } in getDesc() 62 const MDLocalScope *getScopeNode() const { return Desc; } in getScopeNode() 122 const MDLocalScope *Desc; // Debug info descriptor. variable
|
/external/clang/lib/Analysis/ |
D | ProgramPoint.cpp | 48 : Desc((MsgProvider + " : " + Msg).str()) {} in SimpleProgramPointTag() 51 return Desc; in getTagDescription()
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | CheckerRegistry.h | 85 StringRef Desc; member 88 : Initialize(fn), FullName(name), Desc(desc) {} in CheckerInfo()
|
/external/llvm/tools/lli/Unix/ |
D | RPCChannel.inc | 89 static bool CheckError(int rc, size_t Size, const char *Desc) { 91 llvm::errs() << "IO Error: " << Desc << ": " << sys::StrError() << '\n'; 102 llvm::errs() << "RPC Error: " << Desc << ": " << ErrorMsg << '\n';
|
/external/llvm/lib/MC/MCDisassembler/ |
D | Disassembler.cpp | 168 const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode()); in getItineraryLatency() local 169 unsigned SCClass = Desc.getSchedClass(); in getItineraryLatency() 195 const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode()); in getLatency() local 196 unsigned SCClass = Desc.getSchedClass(); in getLatency()
|
/external/llvm/lib/IR/ |
D | DataLayout.cpp | 173 void DataLayout::reset(StringRef Desc) { in reset() argument 188 parseSpecifier(Desc); in reset() 218 void DataLayout::parseSpecifier(StringRef Desc) { in parseSpecifier() argument 219 StringRepresentation = Desc; in parseSpecifier() 220 while (!Desc.empty()) { in parseSpecifier() 222 std::pair<StringRef, StringRef> Split = split(Desc, '-'); in parseSpecifier() 223 Desc = Split.second; in parseSpecifier()
|