| /freebsd-13.1/sys/contrib/dev/acpica/components/executer/ |
| H A D | exresnte.c | 199 ACPI_OBJECT_TYPE EntryType; in AcpiExResolveNodeToValue() local 211 EntryType = AcpiNsGetType ((ACPI_HANDLE) Node); in AcpiExResolveNodeToValue() 216 if ((EntryType == ACPI_TYPE_LOCAL_ALIAS) || in AcpiExResolveNodeToValue() 217 (EntryType == ACPI_TYPE_LOCAL_METHOD_ALIAS)) in AcpiExResolveNodeToValue() 223 EntryType = AcpiNsGetType ((ACPI_HANDLE) Node); in AcpiExResolveNodeToValue() 233 if ((EntryType == ACPI_TYPE_DEVICE) || in AcpiExResolveNodeToValue() 234 (EntryType == ACPI_TYPE_THERMAL) || in AcpiExResolveNodeToValue() 235 (EntryType == ACPI_TYPE_METHOD) || in AcpiExResolveNodeToValue() 252 switch (EntryType) in AcpiExResolveNodeToValue() 329 Node, SourceDesc, EntryType)); in AcpiExResolveNodeToValue() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 83 using EntryType = FormatEntity::Entry::Type; typedef 88 Definition("*", EntryType::ParentString)}; 91 Definition("load", EntryType::AddressLoad), 100 Definition("index", EntryType::FrameIndex), 112 Definition("id", EntryType::FunctionID), 139 Definition("id", EntryType::ProcessID), 145 Definition("*", EntryType::ParentString)}; 148 Definition("*", EntryType::ParentString)}; 151 Definition("id", EntryType::ThreadID), 157 Definition("name", EntryType::ThreadName), [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | DebugMacros.h | 26 enum EntryType : uint8_t { enum 46 EntryType GetType() const { return static_cast<EntryType>(m_type); } in GetType() 59 DebugMacroEntry(EntryType type, uint32_t line, uint32_t debug_line_file_idx, 62 DebugMacroEntry(EntryType type, const DebugMacrosSP &debug_macros_sp);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | AuxVector.h | 25 enum EntryType { enum 64 llvm::Optional<uint64_t> GetAuxValue(enum EntryType entry_type) const; 66 const char *GetEntryName(EntryType type) const;
|
| H A D | AuxVector.cpp | 33 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue() 47 GetEntryName(static_cast<EntryType>(entry.first)), entry.first, in DumpToLog() 52 const char *AuxVector::GetEntryName(EntryType type) const { in GetEntryName()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | DWARFYAML.h | 194 template <typename EntryType> struct ListEntries { 195 Optional<std::vector<EntryType>> Entries; 199 template <typename EntryType> struct ListTable { 207 std::vector<ListEntries<EntryType>> Lists; 354 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR() 355 struct MappingTraits<DWARFYAML::ListTable<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 356 static void mapping(IO &IO, DWARFYAML::ListTable<EntryType> &ListTable); in LLVM_YAML_IS_SEQUENCE_VECTOR() 359 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR() 360 struct MappingTraits<DWARFYAML::ListEntries<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 361 static void mapping(IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries); in LLVM_YAML_IS_SEQUENCE_VECTOR() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | DWARFYAML.cpp | 299 template <typename EntryType> 300 void MappingTraits<DWARFYAML::ListEntries<EntryType>>::mapping( in mapping() 301 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in mapping() 306 template <typename EntryType> 307 std::string MappingTraits<DWARFYAML::ListEntries<EntryType>>::validate( in validate() 308 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in validate() 314 template <typename EntryType> 315 void MappingTraits<DWARFYAML::ListTable<EntryType>>::mapping( in mapping() 316 IO &IO, DWARFYAML::ListTable<EntryType> &ListTable) { in mapping()
|
| H A D | DWARFEmitter.cpp | 909 template <typename EntryType> 911 ArrayRef<DWARFYAML::ListTable<EntryType>> Tables, in writeDWARFLists() 913 for (const DWARFYAML::ListTable<EntryType> &Table : Tables) { in writeDWARFLists() 936 for (const DWARFYAML::ListEntries<EntryType> &List : Table.Lists) { in writeDWARFLists() 942 for (const EntryType &Entry : *List.Entries) { in writeDWARFLists()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | DebugMacros.cpp | 15 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry() 20 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclTemplate.h | 767 template <typename EntryType> struct SpecEntryTraits { 768 using DeclType = EntryType; 770 static DeclType *getDecl(EntryType *D) { in getDecl() 779 template <typename EntryType, typename SETraits = SpecEntryTraits<EntryType>, 783 SpecIterator<EntryType, SETraits, DeclType>, 786 EntryType>::iterator>::iterator_category, 800 template <typename EntryType> 801 static SpecIterator<EntryType> 808 template <class EntryType, typename ...ProfileArguments> 809 typename SpecEntryTraits<EntryType>::DeclType* [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclTemplate.cpp | 296 template<class EntryType, typename... ProfileArguments> 297 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType * 299 llvm::FoldingSetVector<EntryType> &Specs, void *&InsertPos, in findSpecializationImpl() 301 using SETraits = SpecEntryTraits<EntryType>; in findSpecializationImpl() 304 EntryType::Profile(ID, std::forward<ProfileArguments>(ProfileArgs)..., in findSpecializationImpl() 306 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); in findSpecializationImpl() 310 template<class Derived, class EntryType> 312 llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry, in addSpecializationImpl() 314 using SETraits = SpecEntryTraits<EntryType>; in addSpecializationImpl() 327 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ |
| H A D | NativeProcessELF.h | 25 llvm::Optional<uint64_t> GetAuxValue(enum AuxVector::EntryType type);
|
| H A D | NativeProcessELF.cpp | 16 NativeProcessELF::GetAuxValue(enum AuxVector::EntryType type) { in GetAuxValue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DebugLocEntry.h | 43 enum EntryType { enum 50 enum EntryType EntryKind;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFListTable.h | 39 using EntryType = ListEntryType; variable 40 using ListEntries = std::vector<EntryType>;
|
| /freebsd-13.1/sys/contrib/dev/acpica/common/ |
| H A D | dmtbdump2.c | 447 UINT32 EntryType; in AcpiDmDumpIvrs() local 551 EntryType = DeviceEntry->Type; in AcpiDmDumpIvrs() 552 EntryLength = EntrySizes [EntryType >> 6]; in AcpiDmDumpIvrs() 554 switch (EntryType) in AcpiDmDumpIvrs() 596 EntryType, EntryLength, EntryOffset); in AcpiDmDumpIvrs()
|
| H A D | dmtbinfo1.c | 531 {ACPI_DMT_DMAR_SCOPE, ACPI_DMARS_OFFSET (EntryType), "Device Scope Type", 0},
|
| /freebsd-13.1/sys/x86/iommu/ |
| H A D | intel_drv.c | 686 if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT && in dmar_match_devscope() 687 devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_BRIDGE) in dmar_match_devscope() 704 dev_path, dev_path_len, devscope->EntryType)); in dmar_match_devscope() 833 if (devscope->EntryType != entry_type) in dmar_find_nonpci() 1002 if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT) in dmar_inst_rmrr_iter()
|
| /freebsd-13.1/sys/contrib/dev/acpica/compiler/ |
| H A D | dttable1.c | 1939 UINT8 EntryType; in DtCompileIvrs() local 2009 DtCompileInteger (&EntryType, *PFieldList, 1, 0); in DtCompileIvrs() 2011 switch (EntryType) in DtCompileIvrs()
|
| /freebsd-13.1/sys/amd64/vmm/intel/ |
| H A D | vtd.c | 211 switch (device_scope->EntryType){ in vtd_device_scope()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 193 template <typename EntryType> 194 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType * 195 getSpecializationDecl(EntryType &T) { in getSpecializationDecl() 196 return RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::getDecl(&T); in getSpecializationDecl()
|
| /freebsd-13.1/sys/contrib/dev/acpica/include/ |
| H A D | actbl1.h | 750 UINT8 EntryType; member
|
| /freebsd-13.1/usr.sbin/acpi/acpidump/ |
| H A D | acpi.c | 1292 printf("\t\tType=%s\n", devscope_type2str(devscope->EntryType)); in acpi_handle_dmar_devscope()
|