Home
last modified time | relevance | path

Searched refs:NListEntry (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h84 struct NListEntry { struct
129 std::vector<NListEntry> NameList;
178 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::NListEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()
239 template <> struct MappingTraits<MachOYAML::NListEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
240 static void mapping(IO &IO, MachOYAML::NListEntry &NListEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp202 void MappingTraits<MachOYAML::NListEntry>::mapping( in mapping()
203 IO &IO, MachOYAML::NListEntry &NListEntry) { in mapping() argument
204 IO.mapRequired("n_strx", NListEntry.n_strx); in mapping()
205 IO.mapRequired("n_type", NListEntry.n_type); in mapping()
206 IO.mapRequired("n_sect", NListEntry.n_sect); in mapping()
207 IO.mapRequired("n_desc", NListEntry.n_desc); in mapping()
208 IO.mapRequired("n_value", NListEntry.n_value); in mapping()
H A DMachOEmitter.cpp475 void writeNListEntry(MachOYAML::NListEntry &NLE, raw_ostream &OS, in writeNListEntry()
/openbsd/gnu/llvm/llvm/tools/obj2yaml/
H A Dmacho2yaml.cpp590 MachOYAML::NListEntry constructNameList(const nlist_t &nlist) { in constructNameList()
591 MachOYAML::NListEntry NL; in constructNameList()
604 MachOYAML::NListEntry NLE = in dumpSymbols()