Searched refs:Desc (Results 1 - 25 of 170) sorted by relevance

1234567

/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DTableGenBackend.cpp18 void TableGenBackend::EmitSourceFileHeader(const std::string &Desc, argument
21 " C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate" local
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCInstrInfo.h27 const MCInstrDesc *Desc; // Raw array to allow static init'n member in class:llvm::MCInstrInfo
34 Desc = D;
45 return Desc[Opcode];
/external/llvm/include/llvm/TableGen/
H A DTableGenBackend.h24 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
/external/llvm/include/llvm/MC/
H A DMCInstrInfo.h25 const MCInstrDesc *Desc; // Raw array to allow static init'n member in class:llvm::MCInstrInfo
35 Desc = D;
47 return Desc[Opcode];
/external/skia/src/gpu/
H A DGrTextureStripAtlas.h30 struct Desc { struct in class:GrTextureStripAtlas
31 Desc() { sk_bzero(this, sizeof(*this)); } function in struct:GrTextureStripAtlas::Desc
36 bool operator==(const Desc& other) const {
37 return 0 == memcmp(this, &other, sizeof(Desc));
44 static GrTextureStripAtlas* GetAtlas(const Desc& desc);
103 GrTextureStripAtlas(Desc desc);
148 static const Desc& GetKey(const AtlasEntry& entry) { return entry.fDesc; }
149 static uint32_t Hash(const Desc& desc) { return SkOpts::hash(&desc, sizeof(Desc)); }
154 Desc fDes
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.h26 struct Desc { struct in class:__tsan::MutexSet
39 Desc Get(uptr i) const;
48 Desc descs_[kMaxSize];
65 MutexSet::Desc MutexSet::Get(uptr i) const { return Desc(); }
/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp34 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { argument
43 size_t Length = std::min(Desc.size() - Pos, MAX_LINE_LEN - PSLen);
44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix);
46 } while (Pos < Desc.size());
/external/swiftshader/third_party/LLVM/include/llvm/TableGen/
H A DTableGenBackend.h37 void EmitSourceFileHeader(const std::string &Desc, raw_ostream &OS) const;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86CodeEmitter.cpp71 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc);
133 const MCInstrDesc &Desc = I->getDesc(); local
134 emitInstruction(*I, &Desc);
136 if (Desc.getOpcode() == X86::MOVPC32r)
151 const MCInstrDesc &Desc = MI.getDesc(); local
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
[all...]
/external/llvm/lib/IR/
H A DOptBisect.cpp71 std::string Desc = "SCC ("; local
77 Desc += ", ";
80 Desc += F->getName();
82 Desc += "<<null function>>";
84 Desc += ")";
85 return Desc;
/external/clang/lib/Analysis/
H A DProgramPoint.cpp48 : Desc((MsgProvider + " : " + Msg).str()) {}
51 return Desc;
/external/llvm/include/llvm/IR/
H A DOptBisect.h55 /// /p Desc argument should run.
59 /// bisect number assigned to the optimization along with the /p Desc
70 bool shouldRunCase(const Twine &Desc);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSuperDeallocChecker.cpp54 void reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, const Stmt *S,
101 StringRef Desc;
104 Desc = "[super dealloc] should not be called multiple times";
106 Desc = StringRef();
109 reportUseAfterDealloc(ReceiverSymbol, Desc, M.getOriginExpr(), C);
164 StringRef Desc = StringRef(); local
172 Desc = OS.str();
175 reportUseAfterDealloc(BaseSym, Desc, S, C);
179 /// Desc will be used to describe the error; otherwise,
182 StringRef Desc,
181 reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, const Stmt *S, CheckerContext &C) const argument
[all...]
/external/skia/src/gpu/vk/
H A DGrVkPipelineStateBuilder.h40 GrVkPipelineState::Desc*,
59 GrVkPipelineState::Desc*);
66 GrVkPipelineState::Desc* desc);
H A DGrVkBuffer.h52 struct Desc { struct in class:GrVkBuffer
82 const Desc& descriptor);
84 GrVkBuffer(const Desc& desc, const GrVkBuffer::Resource* resource)
104 const Desc& descriptor) {
114 Desc fDesc;
/external/swiftshader/third_party/subzero/src/
H A DIceRangeSpec.h38 struct Desc { struct in class:Ice::RangeSpec
72 Desc Includes;
73 Desc Excludes;
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Derror.c23 WCHAR *Desc; member in struct:__anon21623
68 for (Index = 0; ErrorCodeTable[Index].Desc; Index +=1) {
70 StrCpy (Buffer, ErrorCodeTable[Index].Desc);
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DSIMCCodeEmitter.cpp41 bool isSrcOperand(const MCInstrDesc &Desc, unsigned OpNo) const;
78 bool SIMCCodeEmitter::isSrcOperand(const MCInstrDesc &Desc, argument
80 unsigned OpType = Desc.OpInfo[OpNo].OperandType;
196 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); local
197 unsigned bytes = Desc.getSize();
210 if (!isSrcOperand(Desc, i))
213 int RCID = Desc.OpInfo[i].RegClass;
281 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); local
282 if (isSrcOperand(Desc, OpNo)) {
283 int RCID = Desc
[all...]
/external/llvm/lib/Target/WebAssembly/InstPrinter/
H A DWebAssemblyInstPrinter.cpp54 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); local
55 if (Desc.isVariadic())
56 for (auto i = Desc.getNumOperands(), e = MI->getNumOperands(); i < e; ++i) {
94 unsigned NumFixedOperands = Desc.NumOperands;
97 const MCOperandInfo &Info = Desc.OpInfo[i];
100 : (Desc.TSFlags & WebAssemblyII::VariableOpImmediateIsLabel)))
168 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); local
169 assert(OpNo < Desc.getNumOperands() &&
171 assert(Desc.TSFlags == 0 &&
173 const MCOperandInfo &Info = Desc
[all...]
/external/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp79 const MCInstrDesc &Desc = MCII->get(Opcode); local
80 unsigned NumFixedOperands = Desc.NumOperands;
84 if (Desc.isVariadic()) {
93 const MCOperandInfo &Info = Desc.OpInfo[i];
132 assert(NumExtraOperands == 0 || Desc.isVariadic());
136 if (Desc.TSFlags & WebAssemblyII::VariableOpIsImmediate) {
/external/llvm/include/llvm/ADT/
H A DStatistic.h42 const char *Desc; member in class:llvm::Statistic
49 const char *getDesc() const { return Desc; }
55 Desc = desc;
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.cpp99 for (const auto &Desc : ArangeDescriptors) {
100 OS << format("[0x%*.*" PRIx64 " -", hex_width, hex_width, Desc.Address)
102 hex_width, hex_width, Desc.getEndAddress());
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp63 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); local
64 if (Desc.isVariadic())
66 MI.getNumOperands() - Desc.NumOperands);
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStatistic.h37 const char *Desc; member in class:llvm::Statistic
43 const char *getDesc() const { return Desc; }
47 Name = name; Desc = desc;
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStatistic.h43 const char *Desc; member in class:llvm::Statistic
50 const char *getDesc() const { return Desc; }
56 Desc = desc;

Completed in 679 milliseconds

1234567