HomeSort by relevance Sort by last modified time
    Searched refs:Desc (Results 26 - 50 of 142) sorted by null

12 3 4 5 6

  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 393 ResolveInfo::Desc pDesc,
438 ResolveInfo::Desc pDesc,
466 ResolveInfo::Desc pDesc,
476 ResolveInfo::Desc pDesc,
493 ResolveInfo::Desc pDesc,
504 ResolveInfo::Desc pDesc,
515 ResolveInfo::Desc pDesc,
526 ResolveInfo::Desc pDesc,
  /external/llvm/include/llvm/Support/
Registry.h 27 const char *Name, *Desc;
32 : Name(N), Desc(D), Ctor(C)
36 const char *getDesc() const { return Desc; }
204 Add(const char *Name, const char *Desc)
205 : Entry(Name, Desc, CtorFn), Node(Entry) {}
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 39 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,
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) + " Encoding = "
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLRenderTarget.cpp 16 void GrGLRenderTarget::init(const Desc& desc,
19 fRTFBOID = desc.fRTFBOID;
20 fTexFBOID = desc.fTexFBOID;
21 fMSColorRenderbufferID = desc.fMSColorRenderbufferID;
45 const Desc& desc,
50 desc.fIsWrapped,
54 desc.fConfig, desc.fSampleCnt
    [all...]
GrGLIndexBuffer.cpp 11 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc)
12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
13 , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) {
GrGLVertexBuffer.cpp 11 GrGLVertexBuffer::GrGLVertexBuffer(GrGpuGL* gpu, const Desc& desc)
12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
13 , fImpl(gpu, desc, GR_GL_ARRAY_BUFFER) {
  /external/llvm/lib/DebugInfo/
DWARFDebugAranges.cpp 29 for (const auto &Desc : Set.descriptors()) {
30 uint64_t LowPC = Desc.Address;
31 uint64_t HighPC = Desc.getEndAddress();
  /external/skia/src/gpu/gl/
GrGLRenderTarget.cpp 16 void GrGLRenderTarget::init(const Desc& desc,
19 fRTFBOID = desc.fRTFBOID;
20 fTexFBOID = desc.fTexFBOID;
21 fMSColorRenderbufferID = desc.fMSColorRenderbufferID;
44 const Desc& desc,
49 desc.fIsWrapped,
53 desc.fConfig, desc.fSampleCnt
    [all...]
GrGLIndexBuffer.cpp 11 GrGLIndexBuffer::GrGLIndexBuffer(GrGpuGL* gpu, const Desc& desc)
12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
13 , fImpl(gpu, desc, GR_GL_ELEMENT_ARRAY_BUFFER) {
GrGLVertexBuffer.cpp 11 GrGLVertexBuffer::GrGLVertexBuffer(GrGpuGL* gpu, const Desc& desc)
12 : INHERITED(gpu, desc.fIsWrapped, desc.fSizeInBytes, desc.fDynamic, 0 == desc.fID)
13 , fImpl(gpu, desc, GR_GL_ARRAY_BUFFER) {
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
RenderTarget.h 43 struct Desc {
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 49 : 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.
AsmPrinter.h 373 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/
SubtargetFeature.h 36 const char *Desc; // Help descriptor
  /external/jhead/
gpsinfo.c 79 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/
R600MCCodeEmitter.cpp 92 const MCInstrDesc &Desc = MCII.get(MI.getOpcode());
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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11_objects.h 136 template<typename Base, typename Desc, typename Object = void>
139 Desc desc; member in struct:GalliumD3D11DescribedObject
140 GalliumD3D11DescribedObject(GalliumD3D11Screen* device, Object* object, const Desc& desc)
141 : GalliumD3D11Object<Base, Object>(device, object), desc(desc)
144 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc)
146 memcpy(out_desc, &desc, sizeof(desc));
164 D3D10_BLEND_DESC desc; local
347 Desc desc; member in struct:GalliumD3D11TypedResource
694 D3D11_QUERY_DESC desc; member in struct:GalliumD3D11QueryOrPredicate
727 D3D11_COUNTER_DESC desc; member in struct:GalliumD3D11Counter
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11_objects.h 136 template<typename Base, typename Desc, typename Object = void>
139 Desc desc; member in struct:GalliumD3D11DescribedObject
140 GalliumD3D11DescribedObject(GalliumD3D11Screen* device, Object* object, const Desc& desc)
141 : GalliumD3D11Object<Base, Object>(device, object), desc(desc)
144 virtual void STDMETHODCALLTYPE GetDesc(Desc *out_desc)
146 memcpy(out_desc, &desc, sizeof(desc));
164 D3D10_BLEND_DESC desc; local
347 Desc desc; member in struct:GalliumD3D11TypedResource
694 D3D11_QUERY_DESC desc; member in struct:GalliumD3D11QueryOrPredicate
727 D3D11_COUNTER_DESC desc; member in struct:GalliumD3D11Counter
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86BaseInfo.h 615 inline int getOperandBias(const MCInstrDesc& Desc)
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)
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 59 ResolveInfo::Desc pDesc,
73 ResolveInfo::Desc pDesc,
ELFReaderIf.h 107 ResolveInfo::Desc getSymDesc(uint16_t pShndx, const Input& pInput) const;
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 42 void printLine(const char *Desc, unsigned Val, unsigned Sum) {
43 errs() << " " << Val << " " << Desc << " responses ("
  /frameworks/compile/mclinker/lib/LD/
NamePool.cpp 36 ResolveInfo::Desc pDesc,
59 ResolveInfo::Desc pDesc,
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.cc 84 MutexSet::Desc MutexSet::Get(uptr i) const {
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 188 const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode());
189 unsigned SCClass = Desc.getSchedClass();
215 const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode());
216 unsigned SCClass = Desc.getSchedClass();

Completed in 327 milliseconds

12 3 4 5 6