Home
last modified time | relevance | path

Searched refs:NListType (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h65 using llvm::MachO::NListType;
142 NListType type;
H A DMachONormalizedFileBinaryReader.cpp394 sout.type = static_cast<NListType>(sin->n_type & (N_STAB|N_TYPE)); in readBinary()
426 sout.type = (NListType)(sin->n_type & N_TYPE); in readBinary()
H A DMachONormalizedFileYAML.cpp263 struct ScalarEnumerationTraits<NListType> {
264 static void enumeration(IO &io, NListType &value) { in enumeration()
H A DMachONormalizedFileFromAtoms.cpp1041 sym.type = static_cast<NListType>(stab.type); in addSymbols()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.cpp290 template <typename NListType>
293 NListType ListEntry; in writeNListEntry()
302 memcpy(Out, reinterpret_cast<const char *>(&ListEntry), sizeof(NListType)); in writeNListEntry()
303 Out += sizeof(NListType); in writeNListEntry()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp428 template <typename NListType>
431 NListType ListEntry; in writeNListEntry()
440 OS.write(reinterpret_cast<const char *>(&ListEntry), sizeof(NListType)); in writeNListEntry()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h307 enum NListType : uint8_t { enum