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

1 2

  /external/llvm/lib/TableGen/
TableGenBackend.cpp 18 void TableGenBackend::EmitSourceFileHeader(const std::string &Desc,
21 " 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
28 unsigned NumOpcodes; // Number of entries in the desc array
34 Desc = D;
45 return Desc[Opcode];
SubtargetFeature.h 36 const char *Desc; // Help descriptor
MCRegisterInfo.h 140 const MCRegisterDesc *Desc; // Pointer to the descriptor array
156 Desc = D;
201 return Desc[RegNo];
  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 37 void EmitSourceFileHeader(const std::string &Desc, raw_ostream &OS) const;
  /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...]
  /development/libraries/stereocamera/
source.properties 3 Pkg.Desc=Stereo Camera libraries, revision 1
  /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) {
110 addChecker(&initializeManager<T>, fullName, desc);
  /external/llvm/include/llvm/ADT/
Statistic.h 37 const char *Desc;
43 const char *getDesc() const { return Desc; }
46 void construct(const char *name, const char *desc) {
47 Name = name; Desc = desc;
120 #define STATISTIC(VARNAME, DESC) \
121 static llvm::Statistic VARNAME = { DEBUG_TYPE, DESC, 0, 0 }
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 35 void AsmPrinter::EmitSLEB128(int Value, const char *Desc) const {
36 if (isVerbose() && Desc)
37 OutStreamer.AddComment(Desc);
58 void AsmPrinter::EmitULEB128(unsigned Value, const char *Desc,
60 if (isVerbose() && Desc)
61 OutStreamer.AddComment(Desc);
125 /// describing the encoding. Desc is an optional string saying what the
127 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
129 if (Desc != 0)
130 OutStreamer.AddComment(Twine(Desc)+" Encoding = "
    [all...]
  /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) {}
CommandLine.h 271 // desc - Modifier to set the description shown in the -help output...
272 struct desc { struct in namespace:llvm::cl
273 const char *Desc;
274 desc(const char *Str) : Desc(Str) {} function in struct:llvm::cl::desc
275 void apply(Option &O) const { O.setDescription(Desc); }
281 const char *Desc;
282 value_desc(const char *Str) : Desc(Str) {}
283 void apply(Option &O) const { O.setValueStr(Desc); }
439 #define clEnumVal(ENUMVAL, DESC) #ENUMVAL, int(ENUMVAL), DES
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 159 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
169 const MDNode *getDesc() const { return Desc; }
171 const MDNode *getScopeNode() const { return Desc; }
231 AssertingVH<const MDNode> Desc; // Debug info descriptor.
AsmPrinter.h 354 void EmitSLEB128(int Value, const char *Desc = 0) const;
357 void EmitULEB128(unsigned Value, const char *Desc = 0,
365 /// describing the encoding. Desc is a string saying what the encoding is
367 void EmitEncodingByte(unsigned Val, const char *Desc = 0) const;
  /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);
jhead.h 155 char * Desc;
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 121 const MCInst &MI, const MCInstrDesc &Desc,
129 const MCInst &MI, const MCInstrDesc &Desc,
387 const MCInstrDesc &Desc,
635 const MCInstrDesc &Desc) {
645 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
762 const MCInstrDesc &Desc,
826 if (unsigned REX = DetermineREXPrefix(MI, TSFlags, Desc))
857 const MCInstrDesc &Desc = MCII.get(Opcode);
858 uint64_t TSFlags = Desc.TSFlags;
866 unsigned NumOps = Desc.getNumOperands()
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 43 void printLine(const char *Desc, unsigned Val, unsigned Sum) {
44 errs() << " " << Val << " " << Desc << " responses ("
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 299 const MCInstrDesc &Desc = MI->getDesc();
301 switch (Desc.TSFlags & MSP430II::SizeMask) {
303 switch (Desc.getOpcode()) {
  /external/llvm/lib/Target/PTX/
PTXFPRoundingModePass.cpp 165 const RndModeDesc &Desc = Instrs[MI.getOpcode()];
167 MachineOperand &Op = MI.getOperand(Desc.first);
170 Op.setImm(Desc.second);
  /external/javassist/src/main/javassist/runtime/
Desc.java 24 public class Desc {
57 + "' (Desc.useContextClassLoader: "
66 public static Class[] getParams(String desc) {
67 if (desc.charAt(0) != '(')
70 return getType(desc, desc.length(), 1, 0);
77 public static Class getType(String desc) {
78 Class[] result = getType(desc, desc.length(), 0, 0);
85 private static Class[] getType(String desc, int descLen
    [all...]
  /external/llvm/lib/Target/
TargetData.cpp 134 void TargetData::init(StringRef Desc) {
156 while (!Desc.empty()) {
157 std::pair<StringRef, StringRef> Split = Desc.split('-');
159 Desc = Split.second;
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCCodeEmitter.cpp 183 const MCInstrDesc &Desc = MCII.get(Opcode);
184 uint64_t TSFlags = Desc.TSFlags;
  /external/clang/lib/StaticAnalyzer/Core/
CheckerRegistry.cpp 80 StringRef desc) {
81 Checkers.push_back(CheckerInfo(fn, name, desc));
145 out.indent(pad + 2) << i->Desc;
  /external/llvm/lib/MC/
SubtargetFeature.cpp 159 MaxCPULen, CPUTable[i].Key, CPUTable[i].Desc);
166 MaxFeatLen, FeatTable[i].Key, FeatTable[i].Desc);

Completed in 1390 milliseconds

1 2