HomeSort by relevance Sort by last modified time
    Searched refs:Desc (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/llvm/lib/TableGen/
TableGenBackend.cpp 20 void TableGenBackend::EmitSourceFileHeader(StringRef Desc,
23 " C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate"
  /external/llvm/include/llvm/MC/
MCInstrInfo.h 27 const MCInstrDesc *Desc; // Raw array to allow static init'n
30 unsigned NumOpcodes; // Number of entries in the desc array
37 Desc = D;
50 return Desc[Opcode];
SubtargetFeature.h 36 const char *Desc; // Help descriptor
MCRegisterInfo.h 140 const MCRegisterDesc *Desc; // Pointer to the descriptor array
168 Desc = D;
224 return Desc[RegNo];
  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 37 void EmitSourceFileHeader(StringRef Desc, raw_ostream &OS) const;
  /external/skia/src/gpu/gl/
GrGLTexture.h 62 struct Desc {
73 const Desc& textureDesc,
74 const GrGLRenderTarget::Desc& rtDesc);
78 const Desc& textureDesc);
122 const Desc& textureDesc,
123 const GrGLRenderTarget::Desc* rtDesc);
GrGLRenderTarget.h 28 struct Desc {
39 const Desc& desc,
46 const Desc& desc,
105 void init(const Desc& desc, const GrGLIRect& viewport, GrGLTexID* texID);
GrGLTexture.cpp 28 const Desc& textureDesc,
29 const GrGLRenderTarget::Desc* rtDesc) {
53 const Desc& textureDesc)
62 const Desc& textureDesc,
63 const GrGLRenderTarget::Desc& rtDesc)
GrGLRenderTarget.cpp 18 void GrGLRenderTarget::init(const Desc& desc,
21 fRTFBOID = desc.fRTFBOID;
22 fTexFBOID = desc.fTexFBOID;
23 fMSColorRenderbufferID = desc.fMSColorRenderbufferID;
25 fOwnIDs = desc.fOwnIDs;
31 const Desc& desc,
39 desc.fConfig,
40 desc.fSampleCnt)
    [all...]
GrGpuGL.h 101 virtual GrTexture* onCreateTexture(const GrTextureDesc& desc,
108 virtual GrTexture* onCreatePlatformTexture(const GrPlatformTextureDesc& desc) SK_OVERRIDE;
109 virtual GrRenderTarget* onCreatePlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) SK_OVERRIDE;
225 bool uploadTexData(const GrGLTexture::Desc& desc,
234 GrGLRenderTarget::Desc* desc);
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 71 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc);
133 const MCInstrDesc &Desc = I->getDesc();
134 emitInstruction(*I, &Desc);
136 if (Desc.getOpcode() == X86::MOVPC32r)
151 const MCInstrDesc &Desc = MI.getDesc();
154 if ((Desc.TSFlags & X86II::FormMask) == X86II::Pseudo)
156 if (Desc.TSFlags & X86II::REX_W)
159 unsigned NumOps = Desc.getNumOperands();
162 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
175 switch (Desc.TSFlags & X86II::FormMask)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 36 void AsmPrinter::EmitSLEB128(int Value, const char *Desc) const {
37 if (isVerbose() && Desc)
38 OutStreamer.AddComment(Desc);
44 void AsmPrinter::EmitULEB128(unsigned Value, const char *Desc,
46 if (isVerbose() && Desc)
47 OutStreamer.AddComment(Desc);
93 /// describing the encoding. Desc is an optional string saying what the
95 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
97 if (Desc != 0)
98 OutStreamer.AddComment(Twine(Desc)+" Encoding = "
    [all...]
  /development/libraries/stereocamera/
source.properties 3 Pkg.Desc=Stereo Camera libraries, revision 1
  /external/llvm/include/llvm/ADT/
Statistic.h 38 const char *Desc;
44 const char *getDesc() const { return Desc; }
47 void construct(const char *name, const char *desc) {
48 Name = name; Desc = desc;
122 #define STATISTIC(VARNAME, DESC) \
123 static llvm::Statistic VARNAME = { DEBUG_TYPE, DESC, 0, 0 }
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistry.h 86 StringRef Desc;
88 CheckerInfo(InitializationFunction fn, StringRef name, StringRef desc)
89 : Initialize(fn), FullName(name), Desc(desc) {}
104 StringRef desc);
109 void addChecker(StringRef fullName, StringRef desc) {
112 addChecker(&CheckerRegistry::initializeManager<T>, fullName, desc);
  /frameworks/compile/mclinker/include/mcld/MC/
MCLinker.h 77 ResolveInfo::Desc pDesc,
107 ResolveInfo::Desc pDesc,
194 ResolveInfo::Desc pDesc,
204 ResolveInfo::Desc pDesc,
214 ResolveInfo::Desc pDesc,
224 ResolveInfo::Desc pDesc,
235 ResolveInfo::Desc pDesc,
244 ResolveInfo::Desc pDesc,
  /external/llvm/include/llvm/Support/
Registry.h 22 const char *Name, *Desc;
27 : Name(N), Desc(D), Ctor(C)
31 const char *getDesc() const { return Desc; }
198 Add(const char *Name, const char *Desc)
199 : Entry(Name, Desc, CtorFn), Node(Entry) {}
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 160 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
170 const MDNode *getDesc() const { return Desc; }
172 const MDNode *getScopeNode() const { return Desc; }
232 AssertingVH<const MDNode> Desc; // Debug info descriptor.
AsmPrinter.h 362 void EmitSLEB128(int Value, const char *Desc = 0) const;
365 void EmitULEB128(unsigned Value, const char *Desc = 0,
373 /// describing the encoding. Desc is a string saying what the encoding is
375 void EmitEncodingByte(unsigned Val, const char *Desc = 0) const;
  /frameworks/compile/mclinker/include/mcld/LD/
StrSymPool.h 56 ResolveInfo::Desc pDesc,
70 ResolveInfo::Desc pDesc,
  /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/Analysis/
AliasAnalysisCounter.cpp 43 void printLine(const char *Desc, unsigned Val, unsigned Sum) {
44 errs() << " " << Val << " " << Desc << " responses ("
  /frameworks/compile/mclinker/lib/LD/
StrSymPool.cpp 32 ResolveInfo::Desc pDesc,
54 ResolveInfo::Desc pDesc,
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 126 const MCInst &MI, const MCInstrDesc &Desc,
134 const MCInst &MI, const MCInstrDesc &Desc,
443 const MCInstrDesc &Desc,
712 const MCInstrDesc &Desc) {
722 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
839 const MCInstrDesc &Desc,
921 if (unsigned REX = DetermineREXPrefix(MI, TSFlags, Desc))
    [all...]
  /frameworks/compile/mclinker/lib/MC/
MCLinker.cpp 58 ResolveInfo::Desc pDesc,
164 ResolveInfo::Desc pDesc,
234 ResolveInfo::Desc pDesc,
303 ResolveInfo::Desc pDesc,
354 ResolveInfo::Desc pDesc,
399 ResolveInfo::Desc pDesc,

Completed in 428 milliseconds

1 2 3