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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_flags.h19 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/WindowsResource/
H A DResourceScriptToken.h32 #define TOKEN(Name) Name,
33 #define SHORT_TOKEN(Name, Ch) Name,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dflags.h17 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name;
22 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
23 Type GWP_ASAN_##Name;
H A Dflags.cpp22 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
27 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
28 GWP_ASAN_##Name = DefaultValue;
35 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) \
36 Parser->registerFlag(#Name, Description, FlagType::FT_##Type, \
37 reinterpret_cast<void *>(&F->Name));
42 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
43 Parser->registerFlag("GWP_ASAN_" #Name, Description, FlagType::FT_##Type, \
44 reinterpret_cast<void *>(&F->GWP_ASAN_##Name));
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp70 static bool ShouldUpgradeX86Intrinsic(Function *F, StringRef Name) { argument
76 if (Name == "addcarryx.u32" || // Added in 8.0
77 Name == "addcarryx.u64" || // Added in 8.0
78 Name == "addcarry.u32" || // Added in 8.0
79 Name == "addcarry.u64" || // Added in 8.0
80 Name == "subborrow.u32" || // Added in 8.0
81 Name == "subborrow.u64" || // Added in 8.0
82 Name.startswith("sse2.padds.") || // Added in 8.0
83 Name.startswith("sse2.psubs.") || // Added in 8.0
84 Name
397 UpgradeX86IntrinsicFunction(Function *F, StringRef Name, Function *&NewFn) argument
497 StringRef Name = F->getName(); local
1415 upgradeAVX512MaskToSelect(StringRef Name, IRBuilder<> &Builder, CallInst &CI, Value *&Rep) argument
1678 StringRef Name = F->getName(); local
3663 std::string Name = CI->getName(); local
3738 std::string Name = CI->getName(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Testing/Support/
H A DAnnotations.cpp30 llvm::Optional<llvm::StringRef> Name; local
36 Points[Name.getValueOr("")].push_back(Code.size());
37 Name = llvm::None;
41 OpenRanges.emplace_back(Name.getValueOr(""), Code.size());
42 Name = llvm::None;
45 Require(!Name, "$name should be followed by ^ or [[");
56 Name = Text.take_while(llvm::isAlnum);
57 Text = Text.drop_front(Name->size());
63 Require(!Name, "unterminated $name");
67 size_t Annotations::point(llvm::StringRef Name) cons
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutascii.c3 * Module Name: utascii - Utility ascii functions
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])
264 if (!isprint (Name[i]))
171 AcpiUtValidNameseg( char *Name) argument
248 AcpiUtCheckAndRepairAscii( UINT8 *Name, char *RepairedName, UINT32 Count) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.h79 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits;
80 #define ENUM_DIAGOPT(Name, Type, Bits, Default)
86 #define DIAGOPT(Name, Bits, Default)
87 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits;
111 #define DIAGOPT(Name, Bits, Default)
112 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
113 Type get##Name() const { return static_cast<Type>(Name); } \
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFSection.h21 StringRef Name; member in struct:llvm::SectionName
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFixupKindInfo.h35 const char *Name; member in struct:llvm::MCFixupKindInfo
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DGlobalMappingLayer.h58 void setGlobalMapping(const std::string &Name, JITTargetAddress Addr) { argument
59 SymbolTable[Name] = Addr;
63 void eraseGlobalMapping(const std::string &Name) { argument
64 SymbolTable.erase(Name);
73 /// @param Name The name of the symbol to search for.
76 JITSymbol findSymbol(const std::string &Name, bool ExportedSymbolsOnly) { argument
77 auto I = SymbolTable.find(Name);
80 return BaseLayer.findSymbol(Name, ExportedSymbolsOnly);
87 /// @param Name The name of the symbol to search for.
91 JITSymbol findSymbolIn(ModuleHandleT H, const std::string &Name, argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.h34 std::string Name; member in class:llvm::VRegRenamer::NamedVReg
37 NamedVReg(Register Reg, std::string Name = "") : Reg(Reg), Name(Name) {}
38 NamedVReg(std::string Name = "") : Reg(~0U), Name(Name) {}
40 const std::string &getName() const { return Name; }
73 unsigned createVirtualRegisterWithLowerName(unsigned VReg, StringRef Name);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h95 using Name = StringRef;
111 virtual void handleUnmatchedUnlock(StringRef Kind, Name LockName,
124 virtual void handleIncorrectUnlockKind(StringRef Kind, Name LockName,
135 virtual void handleDoubleLock(StringRef Kind, Name LockName,
152 virtual void handleMutexHeldEndOfScope(StringRef Kind, Name LockName,
165 virtual void handleExclusiveAndShared(StringRef Kind, Name LockName,
189 ProtectedOperationKind POK, Name LockName,
191 Name *PossibleMatch = nullptr) {}
200 virtual void handleNegativeNotHeld(StringRef Kind, Name LockName, Name Ne
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp33 const CommandInfo *CommandTraits::getCommandInfoOrNULL(StringRef Name) const {
34 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
36 return getRegisteredCommandInfo(Name);
59 StringRef Name = Command->Name;
61 unsigned MinPossibleEditDistance = abs((int)Name.size() - (int)Typo.size());
63 unsigned EditDistance = Typo.edit_distance(Name, true, BestEditDistance);
84 char *Name = Allocator.Allocate<char>(CommandName.size() + 1); local
85 memcpy(Name, CommandName.data(), CommandName.size());
86 Name[CommandNam
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp33 StringRef Name) {
35 std::unique_ptr<Module> M = parseIRFile(Name, Diag, Context);
42 StringRef Name) {
44 if (Name.startswith("@")) Name = Name.substr(1);
46 Function *LFn = L.getFunction(Name);
47 Function *RFn = R.getFunction(Name);
51 errs() << "No function named @" << Name << " in either module\n";
53 errs() << "No function named @" << Name << " i
32 readModule(LLVMContext &Context, StringRef Name) argument
41 diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, StringRef Name) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmnames.c3 * Module Name: dmnames - AML disassembler, names, namestrings, pathnames
175 * PARAMETERS: Name - 4 character ACPI name
185 UINT32 Name)
194 *ACPI_CAST_PTR (UINT32, &NewName[0]) = Name;
311 * PARAMETERS: Name - ACPI Name string to store
321 char *Name)
326 if (!Name)
333 while (ACPI_IS_ROOT_PREFIX (ACPI_GET8 (Name)) ||
334 ACPI_IS_PARENT_PREFIX (ACPI_GET8 (Name)))
184 AcpiDmDumpName( UINT32 Name) argument
320 AcpiDmNamestring( char *Name) argument
407 UINT32 Name; local
520 AcpiDmValidateName( char *Name, ACPI_PARSE_OBJECT *Op) argument
[all...]
/freebsd-11-stable/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-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionWasm.cpp19 bool MCSectionWasm::shouldOmitSectionDirective(StringRef Name, argument
21 return MAI.shouldOmitSectionDirective(Name);
24 static void printName(raw_ostream &OS, StringRef Name) { argument
25 if (Name.find_first_not_of("0123456789_."
27 "ABCDEFGHIJKLMNOPQRSTUVWXYZ") == Name.npos) {
28 OS << Name; local
32 for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.h32 #define ASAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsancov_flags.h21 #define SANCOV_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.h22 #define TSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_basic_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dxray_fdr_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dxray_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dxray_profiling_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;

Completed in 299 milliseconds

1234567891011>>