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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_win_dll_thunk.cpp17 #define INTERFACE_FUNCTION(Name) INTERCEPT_SANITIZER_FUNCTION(Name)
18 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
H A Dsanitizer_coverage_win_weak_interception.cpp20 #define INTERFACE_FUNCTION(Name)
21 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
H A Dsanitizer_coverage_win_dynamic_runtime_thunk.cpp17 #define INTERFACE_FUNCTION(Name)
18 #define INTERFACE_WEAK_FUNCTION(Name) WIN_WEAK_IMPORT_DEF(Name)
H A Dsanitizer_win_dynamic_runtime_thunk.cpp17 #define INTERFACE_FUNCTION(Name)
18 #define INTERFACE_WEAK_FUNCTION(Name) WIN_WEAK_IMPORT_DEF(Name)
H A Dsanitizer_win_weak_interception.h22 #define INTERCEPT_WEAK(Name) interceptWhenPossible((uptr) Name, #Name);
24 #define INTERCEPT_SANITIZER_WEAK_FUNCTION(Name) \
25 static int intercept_##Name() { \
26 return __sanitizer::interceptWhenPossible((__sanitizer::uptr) Name, #Name);\
29 __declspec(allocate(".WEAK$M")) int (*__weak_intercept_##Name)() = \
30 intercept_##Name;
H A Dsanitizer_win_defs.h68 #define WIN_WEAK_ALIAS(Name, Default) \
69 __pragma(comment(linker, "/alternatename:" WIN_SYM_PREFIX STRINGIFY(Name) "="\
72 #define WIN_FORCE_LINK(Name) \
73 __pragma(comment(linker, "/include:" WIN_SYM_PREFIX STRINGIFY(Name)))
75 #define WIN_EXPORT(ExportedName, Name) \
77 "=" WIN_EXPORT_PREFIX STRINGIFY(Name)))
89 # define WEAK_DEFAULT_NAME(Name) Name##__def
90 // Name for exported implementation of weak function.
91 # define WEAK_EXPORT_NAME(Name) Nam
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_win_dll_thunk.cpp17 #define INTERFACE_FUNCTION(Name) INTERCEPT_SANITIZER_FUNCTION(Name)
18 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
H A Dubsan_win_weak_interception.cpp20 #define INTERFACE_FUNCTION(Name)
21 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
H A Dubsan_win_dynamic_runtime_thunk.cpp17 #define INTERFACE_FUNCTION(Name)
18 #define INTERFACE_WEAK_FUNCTION(Name) WIN_WEAK_IMPORT_DEF(Name)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win_weak_interception.cpp19 #define INTERFACE_FUNCTION(Name)
20 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeName.h29 StringRef Name = __PRETTY_FUNCTION__; local
32 Name = Name.substr(Name.find(Key));
33 assert(!Name.empty() && "Unable to find the template parameter!");
34 Name = Name.drop_front(Key.size());
36 assert(Name.endswith("]") && "Name doesn't end in the substitution key!");
37 return Name
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.h21 #define CAST_OPERATION(Name) CK_##Name,
26 #define BINARY_OPERATION(Name, Spelling) BO_##Name,
31 #define UNARY_OPERATION(Name, Spelling) UO_##Name,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Rename/
H A DSymbolName.h31 explicit SymbolName(StringRef Name) { argument
35 assert(!Name.empty() && "Invalid symbol name!");
36 this->Name.push_back(Name.str());
39 ArrayRef<std::string> getNamePieces() const { return Name; }
42 llvm::SmallVector<std::string, 1> Name; member in class:clang::tooling::SymbolName
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DMacroBuilder.h28 /// Append a \#define line for macro of the form "\#define Name Value\n".
29 void defineMacro(const Twine &Name, const Twine &Value = "1") { argument
30 Out << "#define " << Name << ' ' << Value << '\n';
33 /// Append a \#undef line for Name. Name should be of the form XXX
35 void undefineMacro(const Twine &Name) { argument
36 Out << "#undef " << Name << '\n'; local
H A DOpenMPKinds.h24 #define OPENMP_CONTEXT_SELECTOR_SET(Name) OMP_CTX_SET_##Name,
31 #define OPENMP_CONTEXT_SELECTOR(Name) OMP_CTX_##Name,
66 #define OPENMP_CLAUSE(Name, Class) \
67 OMPC_##Name,
78 #define OPENMP_DEFAULT_KIND(Name) \
79 OMPC_DEFAULT_##Name,
86 #define OPENMP_SCHEDULE_KIND(Name) \
87 OMPC_SCHEDULE_##Name,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetStreamer.h19 virtual void emitCCTopData(StringRef Name) = 0;
20 virtual void emitCCTopFunction(StringRef Name) = 0;
21 virtual void emitCCBottomData(StringRef Name) = 0;
22 virtual void emitCCBottomFunction(StringRef Name) = 0;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profiling_flags.cpp26 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
34 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_basic_flags.cpp28 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
35 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
36 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_fdr_flags.cpp27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
34 RegisterFlag(P, #Name, Description, &F->Name);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp18 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
19 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
24 #define LANGOPT(Name, Bits, Default, Description)
25 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
26 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
27 Name = Default;
H A DCodeGenOptions.cpp15 #define CODEGENOPT(Name, Bits, Default) Name = Default;
16 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default);
23 bool CodeGenOptions::isNoBuiltinFunc(const char *Name) const {
24 StringRef FuncName(Name);
H A DOpenMPKinds.cpp26 #define OPENMP_CONTEXT_SELECTOR_SET(Name) .Case(#Name, OMP_CTX_SET_##Name)
36 #define OPENMP_CONTEXT_SELECTOR_SET(Name) \
37 case OMP_CTX_SET_##Name: \
38 return #Name;
47 #define OPENMP_CONTEXT_SELECTOR(Name) .Case(#Name, OMP_CTX_##Name)
57 #define OPENMP_CONTEXT_SELECTOR(Name) \
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.cpp23 #define FMA3GROUP(Name, Suf, Attrs) \
24 { { X86::Name##132##Suf, X86::Name##213##Suf, X86::Name##231##Suf }, Attrs },
26 #define FMA3GROUP_MASKED(Name, Suf, Attrs) \
27 FMA3GROUP(Name, Suf, Attrs) \
28 FMA3GROUP(Name, Suf##k, Attrs | X86InstrFMA3Group::KMergeMasked) \
29 FMA3GROUP(Name, Suf##kz, Attrs | X86InstrFMA3Group::KZeroMasked)
31 #define FMA3GROUP_PACKED_WIDTHS(Name, Suf, Attrs) \
32 FMA3GROUP(Name, Su
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_flags.h18 #define HWASAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_flags.h18 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;

Completed in 103 milliseconds

1234567891011>>