Home
last modified time | relevance | path

Searched refs:ListEntry (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp27 class ListEntry { class
29 ListEntry() = default;
31 ListEntry(ValueObject *entry) in ListEntry() function in __anon79725b190111::ListEntry
34 ListEntry next() { in next()
36 return ListEntry(); in next()
40 ListEntry prev() { in prev()
42 return ListEntry(); in prev()
103 ListEntry m_entry;
199 m_slow_runner = ListEntry(m_head).next(); in HasLoop()
247 ListEntry current(m_head); in CalculateNumChildren()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp274 NListType ListEntry; in writeNListEntry() local
275 ListEntry.n_strx = Nstrx; in writeNListEntry()
276 ListEntry.n_type = SE.n_type; in writeNListEntry()
277 ListEntry.n_sect = SE.n_sect; in writeNListEntry()
278 ListEntry.n_desc = SE.n_desc; in writeNListEntry()
279 ListEntry.n_value = SE.n_value; in writeNListEntry()
282 MachO::swapStruct(ListEntry); in writeNListEntry()
283 memcpy(Out, reinterpret_cast<const char *>(&ListEntry), sizeof(NListType)); in writeNListEntry()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp478 NListType ListEntry; in writeNListEntry() local
479 ListEntry.n_strx = NLE.n_strx; in writeNListEntry()
480 ListEntry.n_type = NLE.n_type; in writeNListEntry()
481 ListEntry.n_sect = NLE.n_sect; in writeNListEntry()
482 ListEntry.n_desc = NLE.n_desc; in writeNListEntry()
483 ListEntry.n_value = NLE.n_value; in writeNListEntry()
486 MachO::swapStruct(ListEntry); in writeNListEntry()
487 OS.write(reinterpret_cast<const char *>(&ListEntry), sizeof(NListType)); in writeNListEntry()