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

1 2 3 4

  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 25 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.h 26 struct Desc {
39 Desc Get(uptr i) const;
44 Desc descs_[kMaxSize];
60 MutexSet::Desc MutexSet::Get(uptr i) const { return Desc(); }
  /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
  /external/skia/src/gpu/gl/
GrGLTexture.h 59 struct Desc : public GrTextureDesc {
67 const Desc& textureDesc,
68 const GrGLRenderTarget::Desc& rtDesc);
72 const Desc& textureDesc);
105 const Desc& textureDesc,
106 const GrGLRenderTarget::Desc* rtDesc);
GrGLTexture.cpp 18 const Desc& textureDesc,
19 const GrGLRenderTarget::Desc* rtDesc) {
44 const Desc& textureDesc)
50 const Desc& textureDesc,
51 const GrGLRenderTarget::Desc& rtDesc)
GrGLProgram.h 43 struct Desc;
46 const Desc& desc,
61 const Desc& getDesc() { return fDesc; }
81 struct Desc {
82 Desc() {
85 memset(this, 0, sizeof(Desc));
139 const Desc& desc,
215 Desc fDesc
    [all...]
GrGLRenderTarget.h 27 struct Desc {
38 const Desc& desc,
45 const Desc& desc,
100 void init(const Desc& desc, const GrGLIRect& viewport, GrGLTexID* texID);
GrGLRenderTarget.cpp 16 void GrGLRenderTarget::init(const Desc& desc,
19 fRTFBOID = desc.fRTFBOID;
20 fTexFBOID = desc.fTexFBOID;
21 fMSColorRenderbufferID = desc.fMSColorRenderbufferID;
43 const Desc& desc,
48 desc.fIsWrapped,
52 desc.fConfig, desc.fSampleCnt)
    [all...]
GrGLProgram.cpp 44 const Desc& desc,
46 GrGLProgram* program = SkNEW_ARGS(GrGLProgram, (gl, desc, stages));
55 const Desc& desc,
59 fDesc = desc;
107 case Desc::kNone_DualSrcOutput:
111 case Desc::kCoverage_DualSrcOutput:
112 case Desc::kCoverageISA_DualSrcOutput:
113 case Desc::kCoverageISC_DualSrcOutput
    [all...]
GrGpuGL.h 63 virtual GrTexture* onCreateTexture(const GrTextureDesc& desc,
141 typedef GrGLProgram::Desc ProgramDesc;
148 GrGLProgram* getProgram(const GrGLProgram::Desc& desc, const GrEffectStage* stages[]);
209 ProgramDesc* desc);
242 bool uploadTexData(const GrGLTexture::Desc& desc,
251 GrGLRenderTarget::Desc* desc);
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 35 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) {
44 PosE = Pos + ((MAX_LINE_LEN > (Desc.size() - PSLen)) ?
45 Desc.size() :
47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix);
49 } while(Pos < Desc.size());
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.h 27 struct Desc {
28 Desc() { memset(this, 0, sizeof(*this)); }
38 static GrTextureStripAtlas* GetAtlas(const Desc& desc);
96 GrTextureStripAtlas(Desc desc);
139 typedef GrTBinHashKey<AtlasEntry, sizeof(GrTextureStripAtlas::Desc)> AtlasHashKey;
163 const Desc fDesc;
  /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...]
  /external/llvm/lib/Target/R600/MCTargetDesc/
SIMCCodeEmitter.cpp 46 bool isSrcOperand(const MCInstrDesc &Desc, unsigned OpNo) const;
76 bool SIMCCodeEmitter::isSrcOperand(const MCInstrDesc &Desc,
79 unsigned RegClass = Desc.OpInfo[OpNo].RegClass;
133 const MCInstrDesc &Desc = MCII.get(MI.getOpcode());
134 unsigned bytes = Desc.getSize();
147 if (!isSrcOperand(Desc, i))
191 const MCInstrDesc &Desc = MCII.get(MI.getOpcode());
192 if (isSrcOperand(Desc, OpNo)) {
194 if (Enc != ~0U && (Enc != 255 || Desc.getSize() == 4))
  /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;
164 #define STATISTIC(VARNAME, DESC) \
165 static llvm::Statistic VARNAME = { DEBUG_TYPE, DESC, 0, 0 }
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 72 const MCInstrDesc *Desc) const;
76 const MCInstrDesc *Desc) const;
82 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc);
151 const MCInstrDesc &Desc = I->getDesc();
152 emitInstruction(*I, &Desc);
154 if (Desc.getOpcode() == X86::MOVPC32r)
169 const MCInstrDesc &Desc = MI.getDesc();
172 if ((Desc.TSFlags & X86II::FormMask) == X86II::Pseudo)
174 if (Desc.TSFlags & X86II::REX_W)
177 unsigned NumOps = Desc.getNumOperands()
    [all...]
  /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/
IRBuilder.h 405 ResolveInfo::Desc pDesc,
450 ResolveInfo::Desc pDesc,
474 ResolveInfo::Desc pDesc,
484 ResolveInfo::Desc pDesc,
501 ResolveInfo::Desc pDesc,
512 ResolveInfo::Desc pDesc,
523 ResolveInfo::Desc pDesc,
534 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; }
199 Add(const char *Name, const char *Desc)
200 : 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.
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 55 ResolveInfo::Desc pDesc,
69 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);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.h 82 ResolveInfo::Desc getSymDesc(uint16_t shndx) const

Completed in 1457 milliseconds

1 2 3 4