Home
last modified time | relevance | path

Searched refs:EntryType (Results 1 – 24 of 24) sorted by relevance

/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexresnte.c199 ACPI_OBJECT_TYPE EntryType; in AcpiExResolveNodeToValue() local
211 EntryType = AcpiNsGetType ((ACPI_HANDLE) Node); in AcpiExResolveNodeToValue()
214 Node, SourceDesc, AcpiUtGetTypeName (EntryType))); 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()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp84 using EntryType = FormatEntity::Entry::Type; typedef
89 Definition("*", EntryType::ParentString)};
92 Definition("load", EntryType::AddressLoad),
93 Definition("file", EntryType::AddressFile)};
96 Definition("basename", EntryType::ParentNumber, FileKind::Basename),
97 Definition("dirname", EntryType::ParentNumber, FileKind::Dirname),
98 Definition("fullpath", EntryType::ParentNumber, FileKind::Fullpath)};
101 Definition("index", EntryType::FrameIndex),
102 Definition("pc", EntryType::FrameRegisterPC),
103 Definition("fp", EntryType::FrameRegisterFP),
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDebugMacros.h26 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/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DAuxVector.h26 enum EntryType { enum
74 std::optional<uint64_t> GetAuxValue(enum EntryType entry_type) const;
76 const char *GetEntryName(EntryType type) const;
H A DAuxVector.cpp34 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue()
48 GetEntryName(static_cast<EntryType>(entry.first)), entry.first, in DumpToLog()
53 const char *AuxVector::GetEntryName(EntryType type) const { in GetEntryName()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h217 template <typename EntryType> struct ListEntries {
218 std::optional<std::vector<EntryType>> Entries;
222 template <typename EntryType> struct ListTable {
230 std::vector<ListEntries<EntryType>> Lists;
394 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR()
395 struct MappingTraits<DWARFYAML::ListTable<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
396 static void mapping(IO &IO, DWARFYAML::ListTable<EntryType> &ListTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()
399 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR()
400 struct MappingTraits<DWARFYAML::ListEntries<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
401 static void mapping(IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries); in LLVM_YAML_IS_SEQUENCE_VECTOR()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp326 template <typename EntryType>
327 void MappingTraits<DWARFYAML::ListEntries<EntryType>>::mapping( in mapping()
328 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in mapping()
333 template <typename EntryType>
334 std::string MappingTraits<DWARFYAML::ListEntries<EntryType>>::validate( in validate()
335 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in validate()
341 template <typename EntryType>
342 void MappingTraits<DWARFYAML::ListTable<EntryType>>::mapping( in mapping()
343 IO &IO, DWARFYAML::ListTable<EntryType> &ListTable) { in mapping()
H A DDWARFEmitter.cpp1098 template <typename EntryType>
1100 ArrayRef<DWARFYAML::ListTable<EntryType>> Tables, in writeDWARFLists()
1102 for (const DWARFYAML::ListTable<EntryType> &Table : Tables) { in writeDWARFLists()
1125 for (const DWARFYAML::ListEntries<EntryType> &List : Table.Lists) { in writeDWARFLists()
1131 for (const EntryType &Entry : *List.Entries) { in writeDWARFLists()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDebugMacros.cpp15 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry()
20 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/
H A DUtility.cpp95 auto *EntryType = ArrayType::get(getEntryTy(M), 0); in getOffloadEntryArray() local
100 new GlobalVariable(M, EntryType, /*isConstant=*/true, Linkage, EntryInit, in getOffloadEntryArray()
104 new GlobalVariable(M, EntryType, /*isConstant=*/true, Linkage, EntryInit, in getOffloadEntryArray()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h733 template <typename EntryType> struct SpecEntryTraits {
734 using DeclType = EntryType;
736 static DeclType *getDecl(EntryType *D) { in getDecl()
740 static ArrayRef<TemplateArgument> getTemplateArgs(EntryType *D) { in getTemplateArgs()
745 template <typename EntryType, typename SETraits = SpecEntryTraits<EntryType>,
749 SpecIterator<EntryType, SETraits, DeclType>,
750 typename llvm::FoldingSetVector<EntryType>::iterator,
752 EntryType>::iterator>::iterator_category,
756 typename llvm::FoldingSetVector<EntryType>::iterator SetIter) in SpecIterator()
766 template <typename EntryType>
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp348 template<class EntryType, typename... ProfileArguments>
349 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType *
351 llvm::FoldingSetVector<EntryType> &Specs, void *&InsertPos, in findSpecializationImpl()
353 using SETraits = SpecEntryTraits<EntryType>; in findSpecializationImpl()
356 EntryType::Profile(ID, std::forward<ProfileArguments>(ProfileArgs)..., in findSpecializationImpl()
358 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); in findSpecializationImpl()
362 template<class Derived, class EntryType>
364 llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry, in addSpecializationImpl()
366 using SETraits = SpecEntryTraits<EntryType>; in addSpecializationImpl()
379 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.h26 std::optional<uint64_t> GetAuxValue(enum AuxVector::EntryType type);
H A DNativeProcessELF.cpp17 NativeProcessELF::GetAuxValue(enum AuxVector::EntryType type) { in GetAuxValue()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h43 enum EntryType { enum
50 enum EntryType EntryKind;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h38 using EntryType = ListEntryType; variable
39 using ListEntries = std::vector<EntryType>;
/freebsd/sys/x86/iommu/
H A Dintel_drv.c678 if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT && in dmar_match_devscope()
679 devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_BRIDGE) in dmar_match_devscope()
696 dev_path, dev_path_len, devscope->EntryType)); in dmar_match_devscope()
826 if (devscope->EntryType != entry_type) in dmar_find_nonpci()
1013 if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT) in dmar_inst_rmrr_iter()
/freebsd/sys/contrib/dev/acpica/common/
H A Ddmtbdump2.c511 UINT32 EntryType; in AcpiDmDumpIvrs() local
619 EntryType = DeviceEntry->Type; in AcpiDmDumpIvrs()
620 EntryLength = EntryType >> 6 == 1 ? 8 : 4; in AcpiDmDumpIvrs()
622 switch (EntryType) in AcpiDmDumpIvrs()
672 EntryType, EntryLength, EntryOffset); in AcpiDmDumpIvrs()
690 if (EntryType == ACPI_IVRS_TYPE_HID) in AcpiDmDumpIvrs()
H A Ddmtbinfo1.c892 {ACPI_DMT_DMAR_SCOPE, ACPI_DMARS_OFFSET (EntryType), "Device Scope Type", 0},
/freebsd/sys/amd64/vmm/intel/
H A Dvtd.c206 switch (device_scope->EntryType){ in vtd_device_scope()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp198 template <typename EntryType>
199 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType *
200 getSpecializationDecl(EntryType &T) { in getSpecializationDecl()
201 return RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::getDecl(&T); in getSpecializationDecl()
/freebsd/sys/contrib/dev/acpica/include/
H A Dactbl1.h1120 UINT8 EntryType; member
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp75 using EntryType = DWARFUnitIndex::Entry::SectionContribution; in fixupIndexV4() typedef
76 using EntryMap = DenseMap<uint32_t, EntryType>; in fixupIndexV4()
/freebsd/usr.sbin/acpi/acpidump/
H A Dacpi.c1448 printf("\t\tType=%s\n", devscope_type2str(devscope->EntryType)); in acpi_handle_dmar_devscope()