HomeSort by: relevance | last modified time | path
    Searched refs:Name (Results 1 - 25 of 217) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_coverage_win_dll_thunk.cc 18 #define INTERFACE_FUNCTION(Name) INTERCEPT_SANITIZER_FUNCTION(Name)
19 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
sanitizer_coverage_win_dynamic_runtime_thunk.cc 18 #define INTERFACE_FUNCTION(Name)
19 #define INTERFACE_WEAK_FUNCTION(Name) WIN_WEAK_IMPORT_DEF(Name)
sanitizer_coverage_win_weak_interception.cc 21 #define INTERFACE_FUNCTION(Name)
22 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
sanitizer_win_dynamic_runtime_thunk.cc 18 #define INTERFACE_FUNCTION(Name)
19 #define INTERFACE_WEAK_FUNCTION(Name) WIN_WEAK_IMPORT_DEF(Name)
sanitizer_win_weak_interception.h 23 #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;
sanitizer_win_defs.h 67 #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)))
82 // a different name "fun__def" and we create a "weak alias" fun = fun__def.
85 // of name mangling.
87 // Dummy name for default implementation of weak function.
88 # define WEAK_DEFAULT_NAME(Name) Name##__de
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_win_dll_thunk.cc 18 #define INTERFACE_FUNCTION(Name) INTERCEPT_SANITIZER_FUNCTION(Name)
19 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
ubsan_win_dynamic_runtime_thunk.cc 18 #define INTERFACE_FUNCTION(Name)
19 #define INTERFACE_WEAK_FUNCTION(Name) WIN_WEAK_IMPORT_DEF(Name)
ubsan_win_weak_interception.cc 21 #define INTERFACE_FUNCTION(Name)
22 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_win_weak_interception.cc 20 #define INTERFACE_FUNCTION(Name)
21 #define INTERFACE_WEAK_FUNCTION(Name) INTERCEPT_SANITIZER_WEAK_FUNCTION(Name)
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerShmemFuchsia.cpp 20 bool SharedMemoryRegion::Create(const char *Name) {
24 bool SharedMemoryRegion::Open(const char *Name) {
28 bool SharedMemoryRegion::Destroy(const char *Name) {
FuzzerShmemWindows.cpp 24 std::string SharedMemoryRegion::Path(const char *Name) {
25 return DirPlusFile(TmpDir(), Name);
28 std::string SharedMemoryRegion::SemName(const char *Name, int Idx) {
29 std::string Res(Name);
38 bool SharedMemoryRegion::Create(const char *Name) {
43 bool SharedMemoryRegion::Open(const char *Name) {
48 bool SharedMemoryRegion::Destroy(const char *Name) {
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahasl.c 3 * Module Name: ahasl - ASL operator decoding for acpihelp utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
174 * PARAMETERS: Name - Name or prefix for an ASL keyword.
179 * DESCRIPTION: Find all ASL keywords that match the input Name or name
186 char *Name)
192 AcpiUtStrupr (Name);
194 for (Keyword = Gbl_AslKeywordInfo; Keyword->Name; Keyword++)
196 if (!Name || (Name[0] == '*')
    [all...]
ahmain.c 3 * Module Name: ahmain - Main module for the acpi help utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
170 #define ACPI_OPTION(Name, Description) \
171 AcpiOsPrintf (" %-24s%s\n", Name, Description);
187 ACPI_USAGE_HEADER ("acpihelp <options> [Name/Prefix | HexValue]");
193 ACPI_OPTION ("-a [Name/Prefix | *]", "Display both ASL operator and AML opcode name(s)");
194 ACPI_OPTION ("-g [Name/Prefix | *]", "Display AML grammar elements(s)");
195 ACPI_OPTION ("-m [Name/Prefix | *]", "Display AML opcode name(s)")
    [all...]
ahdecode.c 3 * Module Name: ahdecode - Miscellaneous decoding for acpihelp utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
164 char *Name,
169 char *Name);
173 char *Name);
273 for (Info = Gbl_PreprocessorDirectives; Info->Name; Info++)
275 printf (" %-36s : %s\n", Info->Name, Info->Description);
282 * FUNCTION: AhFindPredefinedNames (entry point for predefined name search)
284 * PARAMETERS: NamePrefix - Name or prefix to find. Must start with
290 * input name or prefix. Includes the required number of argument
    [all...]
acpihelp.h 3 * Module Name: acpihelp.h - Include file for AcpiHelp utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
174 #define ACPI_GLOBAL(type,name) \
175 extern type name; \
176 type name
178 #define ACPI_INIT_GLOBAL(type,name,value) \
179 type name=value
183 #define ACPI_GLOBAL(type,name) \
184 extern type name
188 #define ACPI_INIT_GLOBAL(type,name,value)
    [all...]
ahaml.c 3 * Module Name: ahaml - AML opcode decoding for acpihelp utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
168 * FUNCTION: AhFindAmlOpcode (entry point for AML opcode name search)
170 * PARAMETERS: Name - Name or prefix for an AML opcode.
175 * DESCRIPTION: Find all AML opcodes that match the input Name or name
182 char *Name)
188 AcpiUtStrupr (Name);
190 /* Find/display all opcode names that match the input name prefix *
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_basic_flags.cc 29 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
36 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
37 RegisterFlag(P, #Name, Description, &F->Name);
xray_fdr_flags.cc 28 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
34 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
35 RegisterFlag(P, #Name, Description, &F->Name);
xray_profiling_flags.cc 27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
34 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
35 RegisterFlag(P, #Name, Description, &F->Name);
  /src/sys/external/bsd/acpica/dist/utilities/
utascii.c 3 * Module Name: utascii - Utility ascii functions
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
160 * PARAMETERS: Name - The name or table signature to be examined.
172 char *Name)
181 if (!AcpiUtValidNameChar (Name[i], i))
237 * PARAMETERS: Name - Ascii string
249 UINT8 *Name,
258 RepairedName[i] = (char) Name[i];
260 if (!Name[i]
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_flags.h 19 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
  /src/sys/external/bsd/acpica/dist/tests/misc/
converterSample.asl 15 Name (b, 5)
16 Name(p008, Package()
48 Name(b,0);
53 Name (a,
68 Name (a1, 0x04)
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfiling.h 24 #define INSTR_PROF_DATA(Type, LLVMType, Name, Initializer) Type Name;
29 #define INSTR_PROF_RAW_HEADER(Type, Name, Initializer) Type Name;
89 * Writes to the file with the last name given to \a *
92 * or if that's not set, the last name given to
104 * \c Name is not copied, so it must remain valid. Passing NULL resets the
107 void __llvm_profile_set_filename(const char *Name);
116 * \c Name is not copied, so it must remain valid. Passing NULL resets the
120 void __llvm_profile_override_default_filename(const char *Name);
    [all...]
  /src/sys/external/bsd/acpica/dist/disassembler/
dmnames.c 3 * Module Name: dmnames - AML disassembler, names, namestrings, pathnames
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
175 * PARAMETERS: Name - 4 character ACPI name
177 * RETURN: Final length of name
179 * DESCRIPTION: Dump an ACPI name, minus any trailing underscores.
185 UINT32 Name)
192 /* Copy name locally in case the original name is not writeable */
194 *ACPI_CAST_PTR (UINT32, &NewName[0]) = Name;
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 9