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

1 2

  /external/llvm/utils/TableGen/
TableGenBackend.cpp 18 void TableGenBackend::EmitSourceFileHeader(const std::string &Desc,
21 " C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate"
TableGenBackend.h 37 void EmitSourceFileHeader(const std::string &Desc, raw_ostream &OS) const;
  /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];
MCRegisterInfo.h 55 const MCRegisterDesc *Desc; // Pointer to the descriptor array
68 Desc = D;
111 return Desc[RegNo];
SubtargetFeature.h 36 const char *Desc; // Help descriptor
  /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...]
X86MCCodeEmitter.cpp 120 const MCInst &MI, const MCInstrDesc &Desc,
128 const MCInst &MI, const MCInstrDesc &Desc,
382 const MCInstrDesc &Desc,
589 const MCInstrDesc &Desc) {
599 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
716 const MCInstrDesc &Desc,
776 if (unsigned REX = DetermineREXPrefix(MI, TSFlags, Desc))
806 const MCInstrDesc &Desc = MCII.get(Opcode);
807 uint64_t TSFlags = Desc.TSFlags;
815 unsigned NumOps = Desc.getNumOperands()
    [all...]
  /development/libraries/stereocamera/
source.properties 3 Pkg.Desc=Stereo Camera libraries, revision 1
  /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;
118 #define STATISTIC(VARNAME, DESC) \
119 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 262 // desc - Modifier to set the description shown in the -help output...
263 struct desc { struct in namespace:llvm::cl
264 const char *Desc;
265 desc(const char *Str) : Desc(Str) {} function in struct:llvm::cl::desc
266 void apply(Option &O) const { O.setDescription(Desc); }
272 const char *Desc;
273 value_desc(const char *Str) : Desc(Str) {}
274 void apply(Option &O) const { O.setValueStr(Desc); }
430 #define clEnumVal(ENUMVAL, DESC) #ENUMVAL, int(ENUMVAL), DES
    [all...]
  /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/include/llvm/CodeGen/
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/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/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) {
155 while (!Desc.empty()) {
156 std::pair<StringRef, StringRef> Split = Desc.split('-');
158 Desc = Split.second;
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 79 PathDiagnostic::PathDiagnostic(llvm::StringRef bugtype, llvm::StringRef desc,
83 Desc(StripTrailingDots(desc)),
273 ID.AddString(Desc);
  /external/llvm/lib/Target/MBlaze/
MBlazeMCCodeEmitter.cpp 181 const MCInstrDesc &Desc = MCII.get(Opcode);
182 uint64_t TSFlags = Desc.TSFlags;
  /external/llvm/lib/MC/
SubtargetFeature.cpp 159 << " - " << CPUTable[i].Desc << ".\n";
167 << " - " << FeatTable[i].Desc << ".\n";
  /external/llvm/lib/Target/ARM/
Thumb1RegisterInfo.cpp 396 const MCInstrDesc &Desc = MI.getDesc();
397 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
653 const MCInstrDesc &Desc = MI.getDesc();
660 if (Desc.mayLoad()) {
683 } else if (Desc.mayStore()) {
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 369 std::string Desc;
376 PathDiagnostic(llvm::StringRef bugtype, llvm::StringRef desc,
381 llvm::StringRef getDescription() const { return Desc; }
  /development/build/tools/
mk_sdk_repo_xml.sh 85 Pkg.Desc description

Completed in 415 milliseconds

1 2