Searched refs:Name (Results 101 - 125 of 1455) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp36 char Name[100]; member in struct:UstarHeader
125 // If Path fits in a Ustar header, updates Prefix and Name and returns true.
127 static bool splitUstar(StringRef Path, StringRef &Prefix, StringRef &Name) { argument
128 if (Path.size() < sizeof(UstarHeader::Name)) {
130 Name = Path;
137 if (Path.size() - Sep - 1 >= sizeof(UstarHeader::Name))
141 Name = Path.substr(Sep + 1);
148 StringRef Name, size_t Size) {
150 memcpy(Hdr.Name, Name
147 writeUstarHeader(raw_fd_ostream &OS, StringRef Prefix, StringRef Name, size_t Size) argument
182 StringRef Name; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h34 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits;
35 #define ENUM_CODEGENOPT(Name, Type, Bits, Default)
39 #define CODEGENOPT(Name, Bits, Default)
40 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits;
216 /// Name of the profile file to use as output for -fprofile-instr-generate,
220 /// Name of the profile file to use with -fprofile-sample-use.
223 /// Name of the profile file to use as input for -fprofile-instr-use
226 /// Name o
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbfileio.c3 * Module Name: dbfileio - Debugger file I/O commands. These can't usually
199 * PARAMETERS: Name - Filename to open
209 char *Name)
213 AcpiGbl_DebugFile = fopen (Name, "w+");
216 AcpiOsPrintf ("Could not open debug file %s\n", Name);
220 AcpiOsPrintf ("Debug output file %s opened\n", Name);
221 AcpiUtSafeStrncpy (AcpiGbl_DbDebugFilename, Name,
208 AcpiDbOpenDebugFile( char *Name) argument
H A Ddbutils.c3 * Module Name: dbutils - AML debugger utilities
201 for (i = 0; Arguments[i].Name; i++)
204 ACPI_CAST_PTR (char, Arguments[i].Name),
205 ACPI_CAST_PTR (char, UserArgument)) == Arguments[i].Name)
361 * PARAMETERS: Name - String to prepare
371 char *Name)
374 if (!Name)
379 AcpiUtStrupr (Name);
383 if (*Name == '/')
385 *Name
370 AcpiDbPrepNamestring( char *Name) argument
426 AcpiDbLocalNsLookup( char *Name) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSimpleTypeSerializer.cpp50 #define TYPE_RECORD(EnumName, EnumVal, Name) \
52 Name##Record &Record);
53 #define TYPE_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
54 #define MEMBER_RECORD(EnumName, EnumVal, Name)
55 #define MEMBER_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DComdat.cpp22 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {}
26 StringRef Comdat::getName() const { return Name->first(); }
28 LLVMComdatRef LLVMGetOrInsertComdat(LLVMModuleRef M, const char *Name) { argument
29 return wrap(unwrap(M)->getOrInsertComdat(Name));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h30 /// Declares a program state trait for type \p Type called \p Name, and
33 #define REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, Type) \
35 class Name {}; \
36 using Name ## Ty = Type; \
41 struct ProgramStateTrait<Name> \
42 : public ProgramStatePartialTrait<Name ## Ty> { \
76 /// State = State->set<Name>(K, V);
77 /// const Value *V = State->get<Name>(K); // Returns NULL if not in the map.
78 /// State = State->remove<Name>(K);
79 /// NameTy Map = State->get<Name>();
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_flags.cpp25 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
31 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) \
32 RegisterFlag(parser, #Name, Description, &f->Name);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp44 Function.Name, Function.ExecutionCount,
52 std::string Name; local
54 Name = Group.getName();
56 llvm::raw_string_ostream OS(Name);
61 FunctionCoverageSummary Summary(Name);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DInlineInfo.h63 uint32_t Name; ///< String table offset in the string table. member in struct:llvm::gsym::InlineInfo
68 InlineInfo() : Name(0), CallFile(0), CallLine(0) {}
70 Name = 0;
172 return LHS.Name == RHS.Name && LHS.CallFile == RHS.CallFile &&
H A DLookupResult.h23 StringRef Name; ///< Function or symbol name. member in struct:llvm::gsym::SourceLocation
30 return LHS.Name == RHS.Name && LHS.Dir == RHS.Dir &&
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_flags.cpp40 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
46 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) \
47 RegisterFlag(parser, #Name, Description, &f->Name);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp46 std::string Name;
54 std::string Name; member in struct:__anon2937::GenericField
60 GenericField(StringRef Name) : Name(Name) {} argument
64 std::string Name; member in struct:__anon2937::SearchIndex
70 std::string Name; member in struct:__anon2937::GenericTable
79 const GenericField *getFieldByName(StringRef Name) const {
81 if (Name == Field.Name)
541 parseSearchIndex(GenericTable &Table, StringRef Name, const std::vector<StringRef> &Key, bool EarlyOut) argument
570 StringRef Name; local
768 std::string Name = local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegisterBank.h31 const char *Name; member in class:llvm::RegisterBank
43 RegisterBank(unsigned ID, const char *Name, unsigned Size,
51 const char *getName() const { return Name; }
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecordMapping.h32 #define SYMBOL_RECORD(EnumName, EnumVal, Name) \
33 Error visitKnownRecord(CVSymbol &CVR, Name &Record) override;
34 #define SYMBOL_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
H A DSymbolVisitorCallbacks.h38 #define SYMBOL_RECORD(EnumName, EnumVal, Name) \
39 virtual Error visitKnownRecord(CVSymbol &CVR, Name &Record) { \
42 #define SYMBOL_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
H A DTypeDumpVisitor.h54 #define TYPE_RECORD(EnumName, EnumVal, Name) \
55 Error visitKnownRecord(CVType &CVR, Name##Record &Record) override;
56 #define MEMBER_RECORD(EnumName, EnumVal, Name) \
57 Error visitKnownMember(CVMemberRecord &CVR, Name##Record &Record) override;
58 #define TYPE_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
59 #define MEMBER_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h23 /// @param Name Section name.
27 static Expected<Decompressor> create(StringRef Name, StringRef Data,
48 static bool isCompressedELFSection(uint64_t Flags, StringRef Name);
51 static bool isGnuStyle(StringRef Name);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DMacroPPCallbacks.cpp23 Preprocessor &PP, raw_ostream &Name,
25 Name << II.getName();
28 Name << '(';
32 Name << (*AI)->getName();
33 Name << ',';
38 Name << "...";
40 Name << (*AI)->getName();
45 Name << "...";
47 Name << ')';
183 llvm::raw_string_ostream Name(NameBuffe
21 writeMacroDefinition(const IdentifierInfo &II, const MacroInfo &MI, Preprocessor &PP, raw_ostream &Name, raw_ostream &Value) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DStreamUtil.h42 StringRef getShortName() const { return Name; }
46 static StreamInfo createStream(StreamPurpose Purpose, StringRef Name,
54 std::string Name; member in struct:llvm::pdb::StreamInfo
H A DMinimalTypeDumper.h43 #define TYPE_RECORD(EnumName, EnumVal, Name) \
45 codeview::Name##Record &Record) override;
46 #define MEMBER_RECORD(EnumName, EnumVal, Name) \
48 codeview::Name##Record &Record) override;
49 #define TYPE_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
50 #define MEMBER_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFTypeUnit.cpp22 const char *Name = TD.getName(DINameKind::ShortName); local
25 OS << "name = '" << Name << "'"
39 << " name = '" << Name << "'"
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacapps.h3 * Module Name: acapps - common include for ACPI applications/tools
202 #define ACPI_OPTION(Name, Description) \
203 printf (" %-20s%s\n", Name, Description);
208 #define ACPI_CHECK_STATUS(Name, Status, Expected) \
212 AcpiFormatException (Status), #Name, _AcpiModuleName, __LINE__); \
218 #define ACPI_CHECK_OK(Name, Status) ACPI_CHECK_STATUS (Name, Status, AE_OK);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp20 Expected<Decompressor> Decompressor::create(StringRef Name, StringRef Data, argument
26 Error Err = isGnuStyle(Name) ? D.consumeCompressedGnuHeader()
75 bool Decompressor::isGnuStyle(StringRef Name) { argument
76 return Name.startswith(".zdebug");
91 bool Decompressor::isCompressedELFSection(uint64_t Flags, StringRef Name) { argument
92 return (Flags & ELF::SHF_COMPRESSED) || isGnuStyle(Name);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp1405 static Optional<int> parseRepeatPassName(StringRef Name) { argument
1406 if (!Name.consume_front("repeat<") || !Name.consume_back(">"))
1409 if (Name.getAsInteger(0, Count) || Count <= 0)
1414 static Optional<int> parseDevirtPassName(StringRef Name) { argument
1415 if (!Name.consume_front("devirt<") || !Name.consume_back(">"))
1418 if (Name.getAsInteger(0, Count) || Count <= 0)
1423 static bool checkParametrizedPassName(StringRef Name, StringRef PassName) { argument
1424 if (!Name
1642 startsWithDefaultPipelineAliasPrefix(StringRef Name) argument
1656 callbacksAcceptPassName(StringRef Name, CallbacksT &Callbacks) argument
1667 isModulePassName(StringRef Name, CallbacksT &Callbacks) argument
1696 isCGSCCPassName(StringRef Name, CallbacksT &Callbacks) argument
1721 isFunctionPassName(StringRef Name, CallbacksT &Callbacks) argument
1747 isLoopPassName(StringRef Name, CallbacksT &Callbacks) argument
1830 auto &Name = E.Name; local
2401 StringRef Name; local
[all...]

Completed in 268 milliseconds

1234567891011>>