Searched refs:Desc (Results 26 - 50 of 125) sorted by relevance

12345

/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp39 void AsmPrinter::EmitSLEB128(int64_t Value, const char *Desc) const {
40 if (isVerbose() && Desc)
41 OutStreamer.AddComment(Desc);
47 void AsmPrinter::EmitULEB128(uint64_t Value, const char *Desc, argument
49 if (isVerbose() && Desc)
50 OutStreamer.AddComment(Desc);
110 /// describing the encoding. Desc is an optional string saying what the
112 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
114 if (Desc)
115 OutStreamer.AddComment(Twine(Desc)
[all...]
H A DDIEHash.cpp132 Attrs.NAME.Desc = &Abbrevs.getData()[i]; \
297 const DIEAbbrevData *Desc = Attr.Desc; local
298 dwarf::Attribute Attribute = Desc->getAttribute();
317 switch (Desc->getForm()) {
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLRenderTarget.cpp16 void GrGLRenderTarget::init(const Desc& desc,
45 const Desc& desc,
70 const Desc& desc,
H A DGrGLIndexBuffer.cpp11 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc)
H A DGrGLVertexBuffer.cpp11 GrGLVertexBuffer::GrGLVertexBuffer(GrGpuGL* gpu, const Desc& desc)
H A DGrGpuGL.h248 bool uploadTexData(const GrGLTexture::Desc& desc,
261 bool uploadCompressedTexData(const GrGLTexture::Desc& desc,
269 GrGLRenderTarget::Desc* desc);
/external/llvm/lib/DebugInfo/
H A DDWARFDebugAranges.cpp29 for (const auto &Desc : Set.descriptors()) {
30 uint64_t LowPC = Desc.Address;
31 uint64_t HighPC = Desc.getEndAddress();
/external/skia/src/gpu/gl/
H A DGrGLRenderTarget.cpp16 void GrGLRenderTarget::init(const Desc& desc,
44 const Desc& desc,
69 const Desc& desc,
H A DGrGLIndexBuffer.cpp11 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc)
H A DGrGLVertexBuffer.cpp11 GrGLVertexBuffer::GrGLVertexBuffer(GrGpuGL* gpu, const Desc& desc)
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DRenderTarget.h43 struct Desc { struct in class:rx::RenderTarget
/external/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h49 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
57 const MDNode *getDesc() const { return Desc; }
59 const MDNode *getScopeNode() const { return Desc; }
119 AssertingVH<const MDNode> Desc; // Debug info descriptor. member in class:llvm::LexicalScope
H A DAsmPrinter.h373 void EmitSLEB128(int64_t Value, const char *Desc = nullptr) const;
376 void EmitULEB128(uint64_t Value, const char *Desc = nullptr,
384 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
385 void EmitEncodingByte(unsigned Val, const char *Desc = nullptr) const;
/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h36 const char *Desc; // Help descriptor member in struct:llvm::SubtargetFeatureKV
/external/llvm/tools/lli/Unix/
H A DRPCChannel.inc89 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/jhead/
H A Dgpsinfo.c79 printf("tag %s format not defined", GpsTags[i].Desc);
97 printf("tag %s format not defined", GpsTags[i].Desc);
111 if (strcmp(GpsTags[i].Desc, tagName) == 0) {
112 printf("found GPS tag %s val %d", GpsTags[i].Desc, GpsTags[i].Tag);
289 printf(" %s =", GpsTags[Tag].Desc);
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DR600MCCodeEmitter.cpp92 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); local
99 } else if (IS_VTX(Desc)) {
109 } else if (IS_TEX(Desc)) {
136 ((Desc.TSFlags & R600_InstFlag::OP1) ||
137 Desc.TSFlags & R600_InstFlag::OP2)) {
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h615 inline int getOperandBias(const MCInstrDesc& Desc) argument
617 unsigned NumOps = Desc.getNumOperands();
619 if (NumOps > 1 && Desc.getOperandConstraint(1, MCOI::TIED_TO) == 0)
621 else if (NumOps > 3 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0 &&
622 Desc.getOperandConstraint(3, MCOI::TIED_TO) == 1)
626 else if (NumOps > 3 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0 &&
627 Desc.getOperandConstraint(NumOps - 1, MCOI::TIED_TO) == 1)
631 else if (NumOps > 2 && Desc.getOperandConstraint(NumOps - 2, MCOI::TIED_TO) == 0)
/external/llvm/lib/Analysis/
H A DAliasAnalysisCounter.cpp42 void printLine(const char *Desc, unsigned Val, unsigned Sum) { argument
43 errs() << " " << Val << " " << Desc << " responses ("
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.cc84 MutexSet::Desc MutexSet::Get(uptr i) const {
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp188 const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode()); local
189 unsigned SCClass = Desc.getSchedClass();
215 const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode()); local
216 unsigned SCClass = Desc.getSchedClass();
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_objects.h136 template<typename Base, typename Desc, typename Object = void>
139 Desc desc;
140 GalliumD3D11DescribedObject(GalliumD3D11Screen* device, Object* object, const Desc& desc)
144 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc)
344 template<typename Base, typename Desc, D3D11_RESOURCE_DIMENSION Dim>
347 Desc desc;
349 GalliumD3D11TypedResource(GalliumD3D11Screen* device, struct pipe_resource* resource, const Desc& desc, unsigned dxgi_usage)
357 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc)
602 template<typename Base, typename Desc, typename Object>
603 struct GalliumD3D11View : public GalliumD3D11DescribedObject<Base, Desc, Objec
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_objects.h136 template<typename Base, typename Desc, typename Object = void>
139 Desc desc;
140 GalliumD3D11DescribedObject(GalliumD3D11Screen* device, Object* object, const Desc& desc)
144 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc)
344 template<typename Base, typename Desc, D3D11_RESOURCE_DIMENSION Dim>
347 Desc desc;
349 GalliumD3D11TypedResource(GalliumD3D11Screen* device, struct pipe_resource* resource, const Desc& desc, unsigned dxgi_usage)
357 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc)
602 template<typename Base, typename Desc, typename Object>
603 struct GalliumD3D11View : public GalliumD3D11DescribedObject<Base, Desc, Objec
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp200 StringRef Desc = local
202 BugReport *R = new BugReport(*BT, Desc, N);
333 StringRef Desc; local
341 Desc = "Argument to 'delete[]' is uninitialized";
343 Desc = "Argument to 'delete' is uninitialized";
345 BugReport *R = new BugReport(*BT, Desc, N);
/external/llvm/lib/IR/
H A DDataLayout.cpp178 void DataLayout::reset(StringRef Desc) { argument
193 parseSpecifier(Desc);
220 void DataLayout::parseSpecifier(StringRef Desc) { argument
221 while (!Desc.empty()) {
223 std::pair<StringRef, StringRef> Split = split(Desc, '-');
224 Desc = Split.second;

Completed in 1172 milliseconds

12345