Searched refs:Name (Results 1 - 25 of 693) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Basic/
H A DLangOptions.cpp20 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
21 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
28 #define LANGOPT(Name, Bits, Default, Description)
29 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
30 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
31 Name = Default;
H A DOpenMPKinds.cpp25 #define OPENMP_DIRECTIVE(Name) \
26 .Case(#Name, OMPD_##Name)
36 #define OPENMP_DIRECTIVE(Name) \
37 case OMPD_##Name : return #Name;
47 #define OPENMP_CLAUSE(Name, Class) \
48 .Case(#Name, OMPC_##Name)
58 #define OPENMP_CLAUSE(Name, Clas
[all...]
H A DTargetInfo.cpp271 static StringRef removeGCCRegisterPrefix(StringRef Name) { argument
272 if (Name[0] == '%' || Name[0] == '#')
273 Name = Name.substr(1);
275 return Name;
281 bool TargetInfo::isValidClobber(StringRef Name) const {
282 return (isValidGCCRegisterName(Name) ||
283 Name == "memory" || Name
399 const char *Name = Info.getConstraintStr().c_str(); local
457 resolveSymbolicName(const char *&Name, ConstraintInfo *OutputConstraints, unsigned NumOutputs, unsigned &Index) const argument
484 const char *Name = Info.ConstraintStr.c_str(); local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticOptions.h39 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits;
40 #define ENUM_DIAGOPT(Name, Type, Bits, Default)
46 #define DIAGOPT(Name, Bits, Default)
47 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits;
63 #define DIAGOPT(Name, Bits, Default)
64 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
65 Type get##Name() const { return static_cast<Type>(Name); } \
[all...]
H A DMacroBuilder.h29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") { argument
31 Out << "#define " << Name << ' ' << Value << '\n';
34 /// Append a \#undef line for Name. Name should be of the form XXX
36 void undefineMacro(const Twine &Name) { argument
37 Out << "#undef " << Name << '\n'; local
H A DOperatorKinds.h24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
25 OO_##Name,
H A DOpenMPKinds.h25 #define OPENMP_DIRECTIVE(Name) \
26 OMPD_##Name,
34 #define OPENMP_CLAUSE(Name, Class) \
35 OMPC_##Name,
44 #define OPENMP_DEFAULT_KIND(Name) \
45 OMPC_DEFAULT_##Name,
H A DLangOptions.h40 #define LANGOPT(Name, Bits, Default, Description) unsigned Name : Bits;
41 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description)
48 #define LANGOPT(Name, Bits, Default, Description)
49 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
50 unsigned Name : Bits;
91 #define LANGOPT(Name, Bits, Default, Description)
92 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
93 Type get##Name() const { return static_cast<Type>(Name); } \
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCodeGenOptions.h26 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits;
27 #define ENUM_CODEGENOPT(Name, Type, Bits, Default)
31 #define CODEGENOPT(Name, Bits, Default)
32 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits;
142 /// Name of the profile file to use with -fprofile-sample-use.
147 #define CODEGENOPT(Name, Bits, Default)
148 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
149 Type get##Name() cons
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerOptInfo.h24 StringRef Name; member in class:clang::ento::CheckerOptInfo
30 : Name(name), Enable(enable), Claimed(false) { }
32 StringRef getName() const { return Name; }
/freebsd-10.1-release/contrib/llvm/include/llvm/MC/
H A DMCFixupKindInfo.h28 const char *Name; member in struct:llvm::MCFixupKindInfo
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h70 typedef StringRef Name; typedef in class:clang::thread_safety::ThreadSafetyHandler
83 virtual void handleUnmatchedUnlock(Name LockName, SourceLocation Loc) {}
89 virtual void handleDoubleLock(Name LockName, SourceLocation Loc) {}
103 virtual void handleMutexHeldEndOfScope(Name LockName,
115 virtual void handleExclusiveAndShared(Name LockName, SourceLocation Loc1,
135 ProtectedOperationKind POK, Name LockName,
137 Name *PossibleMatch=0) {}
145 virtual void handleFunExcludesLock(Name FunName, Name LockName,
/freebsd-10.1-release/contrib/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp35 static Module *ReadModule(LLVMContext &Context, StringRef Name) { argument
37 Module *M = ParseIRFile(Name, Diag, Context);
44 StringRef Name) {
46 if (Name.startswith("@")) Name = Name.substr(1);
48 Function *LFn = L->getFunction(Name);
49 Function *RFn = R->getFunction(Name);
53 errs() << "No function named @" << Name << " in either module\n";
55 errs() << "No function named @" << Name << " i
43 diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, StringRef Name) argument
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h41 void InsertHelper(Instruction *I, const Twine &Name, argument
45 I->setName(Name);
247 /// Name is specified, it is the name of the global variable created.
248 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
475 InstTy *Insert(InstTy *I, const Twine &Name = "") const {
476 this->InsertHelper(I, Name, BB, InsertPt);
555 BasicBlock *UnwindDest, const Twine &Name = "") {
558 Name);
562 const Twine &Name = "") {
564 Name);
594 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
879 CreateLoad(Value *Ptr, const char *Name) argument
894 CreateAlignedLoad(Value *Ptr, unsigned Align, const char *Name) argument
[all...]
H A DInstrTypes.h143 const Twine &Name, Instruction *InsertBefore);
145 const Twine &Name, BasicBlock *InsertAtEnd);
162 const Twine &Name = Twine(),
170 const Twine &Name, BasicBlock *InsertAtEnd);
177 const Twine &Name = "") {\
178 return Create(Instruction::OPC, V1, V2, Name);\
183 const Twine &Name, BasicBlock *BB) {\
184 return Create(Instruction::OPC, V1, V2, Name, BB);\
189 const Twine &Name, Instruction *I) {\
190 return Create(Instruction::OPC, V1, V2, Name,
200 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
206 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
219 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
225 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
238 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
244 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/freebsd-10.1-release/sys/contrib/dev/acpica/components/disassembler/
H A Ddmnames.c3 * Module Name: dmnames - AML disassembler, names, namestrings, pathnames
70 * PARAMETERS: Name - 4 character ACPI name
80 UINT32 Name)
89 *ACPI_CAST_PTR (UINT32, &NewName[0]) = Name;
206 * PARAMETERS: Name - ACPI Name string to store
216 char *Name)
221 if (!Name)
228 while (ACPI_IS_ROOT_PREFIX (ACPI_GET8 (Name)) ||
229 ACPI_IS_PARENT_PREFIX (ACPI_GET8 (Name)))
79 AcpiDmDumpName( UINT32 Name) argument
215 AcpiDmNamestring( char *Name) argument
301 UINT32 Name; local
414 AcpiDmValidateName( char *Name, ACPI_PARSE_OBJECT *Op) argument
[all...]
/freebsd-10.1-release/usr.sbin/ctm/ctm/
H A Dctm_syntax.c16 #define Name CTM_F_Name macro
35 { Name|File|New|Subst, Uid, Gid, Mode,
39 { Name|File|Subst, Uid, Gid, Mode,
43 { Name|File|Subst, Uid, Gid, Mode,
47 { Name|File|Subst, MD5|Before, 0 };
50 { Name|Subst, Uid, Gid, Mode, 0 };
53 { Name|Dir|New , Uid, Gid, Mode, 0 };
56 { Name|Dir, 0 };
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DAutoUpgrade.cpp49 StringRef Name = F->getName(); local
50 if (Name.size() <= 8 || !Name.startswith("llvm."))
52 Name = Name.substr(5); // Strip off "llvm."
54 switch (Name[0]) {
57 if (Name.startswith("arm.neon.vclz")) {
67 "llvm.ctlz." + Name.substr(14), F->getParent());
70 if (Name.startswith("arm.neon.vcnt")) {
78 if (Name
190 StringRef Name = F->getName(); local
326 std::string Name = CI->getName().str(); local
[all...]
H A DValueSymbolTable.cpp28 << *VI->getValue()->getType() << "' Name = '"
40 if (vmap.insert(V->Name)) {
41 //DEBUG(dbgs() << " Inserted value: " << V->Name << ": " << *V << "\n");
49 V->Name->Destroy();
62 V->Name = &NewName;
78 ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) { argument
80 ValueName &Entry = vmap.GetOrCreateValue(Name);
89 SmallString<256> UniqueName(Name.begin(), Name.end());
93 UniqueName.resize(Name
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp40 StringRef Name) {
46 if (Name.empty())
49 if (BName.find(Name) != StringRef::npos)
74 if (Name.empty())
78 if (FName.equals(Name))
81 if (FName.startswith("__inline") && (FName.find(Name) != StringRef::npos))
85 FName.find(Name) != StringRef::npos)
39 isCLibraryFunction(const FunctionDecl *FD, StringRef Name) argument
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp76 StringRef Name = AI->getName(); local
77 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1))
86 StringRef Name = GI->getName(); local
87 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1))
108 StringRef Name = FI->getName(); local
109 if (Name
[all...]
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/
H A DRTDyldMemoryManager.cpp214 uint64_t RTDyldMemoryManager::getSymbolAddress(const std::string &Name) { argument
228 if (Name == "stat") return (uint64_t)&stat;
229 if (Name == "fstat") return (uint64_t)&fstat;
230 if (Name == "lstat") return (uint64_t)&lstat;
231 if (Name == "stat64") return (uint64_t)&stat64;
232 if (Name == "fstat64") return (uint64_t)&fstat64;
233 if (Name == "lstat64") return (uint64_t)&lstat64;
234 if (Name == "atexit") return (uint64_t)&atexit;
235 if (Name == "mknod") return (uint64_t)&mknod;
240 if (Name
272 getPointerToNamedFunction(const std::string &Name, bool AbortOnFailure) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Driver/
H A DTool.cpp15 const ToolChain &TC) : Name(_Name), ShortName(_ShortName),
/freebsd-10.1-release/sys/contrib/dev/acpica/compiler/
H A Daslpredef.c3 * Module Name: aslpredef - support for ACPI predefined names
67 char *Name);
102 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */
140 ThisName->Info.Name, RequiredArgCount);
166 StringBuffer, ThisName->Info.Name);
269 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */
301 ApCheckObjectType (ThisName->Info.Name, ReturnValueOp,
331 * Name - The ACPI name to be checked
336 * the ASL Name operator). If it is a predefined ACPI name, ensure
347 char *Name)
345 ApCheckForPredefinedObject( ACPI_PARSE_OBJECT *Op, char *Name) argument
441 ApCheckForPredefinedName( ACPI_PARSE_OBJECT *Op, char *Name) argument
521 ApCheckForSpecialName( ACPI_PARSE_OBJECT *Op, char *Name) argument
[all...]
/freebsd-10.1-release/contrib/ntp/scripts/build/
H A DgenAuthors.in30 # user = User Name <user@place>
68 my $Name = $_;
70 # print "Got Name <$Name>, name <$name>\n";
71 if (!defined($authors{$Name})) {
73 print "<$Name> is not a defined author!\n";
75 print $FILE "$Name = \n";

Completed in 185 milliseconds

1234567891011>>