Searched refs:Name (Results 26 - 50 of 2071) sorted by relevance

1234567891011>>

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_win_weak_interception.h23 #define INTERCEPT_WEAK(Name) interceptWhenPossible((uptr) Name, #Name);
25 #define INTERCEPT_SANITIZER_WEAK_FUNCTION(Name) \
26 static int intercept_##Name() { \
27 return __sanitizer::interceptWhenPossible((__sanitizer::uptr) Name, #Name);\
30 __declspec(allocate(".WEAK$M")) int (*__weak_intercept_##Name)() = \
31 intercept_##Name;
H A Dsanitizer_win_defs.h67 #define WIN_WEAK_ALIAS(Name, Default) \
68 __pragma(comment(linker, "/alternatename:" WIN_SYM_PREFIX STRINGIFY(Name) "="\
71 #define WIN_FORCE_LINK(Name) \
72 __pragma(comment(linker, "/include:" WIN_SYM_PREFIX STRINGIFY(Name)))
74 #define WIN_EXPORT(ExportedName, Name) \
76 "=" WIN_EXPORT_PREFIX STRINGIFY(Name)))
88 # define WEAK_DEFAULT_NAME(Name) Name##__def
89 // Name for exported implementation of weak function.
90 # define WEAK_EXPORT_NAME(Name) Nam
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_win_weak_interception.h21 #define INTERCEPT_WEAK(Name) interceptWhenPossible((uptr) Name, #Name);
23 #define INTERCEPT_SANITIZER_WEAK_FUNCTION(Name) \
24 static int intercept_##Name() { \
25 return __sanitizer::interceptWhenPossible((__sanitizer::uptr) Name, #Name);\
28 __declspec(allocate(".WEAK$M")) int (*__weak_intercept_##Name)() = \
29 intercept_##Name;
H A Dsanitizer_win_defs.h65 #define WIN_WEAK_ALIAS(Name, Default) \
66 __pragma(comment(linker, "/alternatename:" WIN_SYM_PREFIX STRINGIFY(Name) "="\
69 #define WIN_FORCE_LINK(Name) \
70 __pragma(comment(linker, "/include:" WIN_SYM_PREFIX STRINGIFY(Name)))
72 #define WIN_EXPORT(ExportedName, Name) \
74 "=" WIN_EXPORT_PREFIX STRINGIFY(Name)))
86 # define WEAK_DEFAULT_NAME(Name) Name##__def
87 // Name for exported implementation of weak function.
88 # define WEAK_EXPORT_NAME(Name) Nam
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
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...]
/netbsd-current/external/apache2/llvm/dist/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,
/netbsd-current/external/apache2/llvm/dist/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
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerShmemFuchsia.cpp20 bool SharedMemoryRegion::Create(const char *Name) { argument
24 bool SharedMemoryRegion::Open(const char *Name) { argument
28 bool SharedMemoryRegion::Destroy(const char *Name) { argument
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTypeTraits.h22 #define TYPE_TRAIT_1(Spelling, Name, Key) UTT_##Name,
25 #define TYPE_TRAIT_1(Spelling, Name, Key) +1
28 #define TYPE_TRAIT_2(Spelling, Name, Key) BTT_##Name,
31 #define TYPE_TRAIT_2(Spelling, Name, Key) +1
34 #define TYPE_TRAIT_N(Spelling, Name, Key) TT_##Name,
37 #define TYPE_TRAIT_N(Spelling, Name, Key) +1
43 #define ARRAY_TYPE_TRAIT(Spelling, Name, Ke
[all...]
H A DOpenMPKinds.h30 #define OPENMP_SCHEDULE_KIND(Name) \
31 OMPC_SCHEDULE_##Name,
39 #define OPENMP_SCHEDULE_MODIFIER(Name) \
40 OMPC_SCHEDULE_MODIFIER_##Name,
47 #define OPENMP_DEVICE_MODIFIER(Name) OMPC_DEVICE_##Name,
54 #define OPENMP_DEPEND_KIND(Name) \
55 OMPC_DEPEND_##Name,
62 #define OPENMP_LINEAR_KIND(Name) \
63 OMPC_LINEAR_##Name,
[all...]
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
/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/
H A DTypeTraits.cpp19 #define TYPE_TRAIT_1(Spelling, Name, Key) #Name,
21 #define TYPE_TRAIT_2(Spelling, Name, Key) #Name,
23 #define TYPE_TRAIT_N(Spelling, Name, Key) #Name,
28 #define TYPE_TRAIT_1(Spelling, Name, Key) #Spelling,
30 #define TYPE_TRAIT_2(Spelling, Name, Key) #Spelling,
32 #define TYPE_TRAIT_N(Spelling, Name, Key) #Spelling,
37 #define ARRAY_TYPE_TRAIT(Spelling, Name, Ke
[all...]
H A DCodeGenOptions.cpp15 #define CODEGENOPT(Name, Bits, Default) Name = Default;
16 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default);
/netbsd-current/sys/external/bsd/acpica/dist/tools/acpihelp/
H A Dahasl.c3 * Module Name: ahasl - ASL operator decoding for acpihelp utility
66 * PARAMETERS: Name - Name or prefix for an ASL keyword.
71 * DESCRIPTION: Find all ASL keywords that match the input Name or name
78 char *Name)
84 AcpiUtStrupr (Name);
86 for (Keyword = Gbl_AslKeywordInfo; Keyword->Name; Keyword++)
88 if (!Name || (Name[0] == '*'))
97 strcpy (Gbl_Buffer, Keyword->Name);
77 AhFindAslKeywords( char *Name) argument
163 AhFindAslAndAmlOperators( char *Name) argument
192 AhFindAslOperators( char *Name) argument
[all...]
H A Dahmain.c3 * Module Name: ahmain - Main module for the acpi help utility
62 #define ACPI_OPTION(Name, Description) \
63 AcpiOsPrintf (" %-24s%s\n", Name, Description);
79 ACPI_USAGE_HEADER ("acpihelp <options> [Name/Prefix | HexValue]");
85 ACPI_OPTION ("-a [Name/Prefix | *]", "Display both ASL operator and AML opcode name(s)");
86 ACPI_OPTION ("-g [Name/Prefix | *]", "Display AML grammar elements(s)");
87 ACPI_OPTION ("-m [Name/Prefix | *]", "Display AML opcode name(s)");
95 ACPI_OPTION ("-k [Name/Prefix | *]", "Display ASL non-operator keyword(s)");
96 ACPI_OPTION ("-p [Name/Prefix | *]", "Display ASL predefined method name(s)");
97 ACPI_OPTION ("-s [Name/Prefi
125 char *Name; local
[all...]
H A Dahdecode.c3 * Module Name: ahdecode - Miscellaneous decoding for acpihelp utility
56 char *Name,
61 char *Name);
65 char *Name);
165 for (Info = Gbl_PreprocessorDirectives; Info->Name; Info++)
167 printf (" %-36s : %s\n", Info->Name, Info->Description);
176 * PARAMETERS: NamePrefix - Name or prefix to find. Must start with
193 char Name[ACPI_NAMESEG_SIZE + 1]; local
218 Name[0] = '_';
219 AcpiUtSafeStrncpy (&Name[
258 AhDoSpecialNames( char *Name) argument
338 AhDisplayPredefinedName( char *Name, UINT32 Length) argument
408 AhDisplayPredefinedInfo( char *Name) argument
477 AhDisplayDeviceIds( char *Name) argument
[all...]
H A Dacpihelp.h3 * Module Name: acpihelp.h - Include file for AcpiHelp utility
97 #define AH_DISPLAY_EXCEPTION(Status, Name) \
98 printf ("%.4X: %s\n", Status, Name)
102 Exception->Name, Exception->Description)
140 char *Name; member in struct:ah_aml_type
147 char *Name; member in struct:ah_asl_operator
155 char *Name; member in struct:ah_asl_keyword
163 char *Name; member in struct:ah_directive_info
182 char *Name);
186 char *Name);
[all...]
/netbsd-current/external/apache2/llvm/dist/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;
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_basic_flags.cc29 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
36 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
37 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_fdr_flags.cc28 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
34 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
35 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_profiling_flags.cc27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
34 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
35 RegisterFlag(P, #Name, Description, &F->Name);
/netbsd-current/sys/external/bsd/acpica/dist/utilities/
H A Dutascii.c3 * Module Name: utascii - Utility ascii functions
52 * PARAMETERS: Name - The name or table signature to be examined.
64 char *Name)
73 if (!AcpiUtValidNameChar (Name[i], i))
129 * PARAMETERS: Name - Ascii string
141 UINT8 *Name,
150 RepairedName[i] = (char) Name[i];
152 if (!Name[i])
156 if (!isprint (Name[i]))
63 AcpiUtValidNameseg( char *Name) argument
140 AcpiUtCheckAndRepairAscii( UINT8 *Name, char *RepairedName, UINT32 Count) argument
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_flags.h19 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;

Completed in 704 milliseconds

1234567891011>>