Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1479 uint64_t SectSize = Section.getSize(); in disassembleObject() local
1480 if (!SectSize) in disassembleObject()
1566 ? SectSize in disassembleObject()
1569 if (End > SectSize) in disassembleObject()
1570 End = SectSize; in disassembleObject()
H A DMachODump.cpp1206 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection() local
1229 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0'; in DumpLiteralPointerSection()
2948 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize(); in get_pointer_64() local
2949 if (SectSize == 0) in get_pointer_64()
2959 if (Address >= SectAddress && Address < SectAddress + SectSize) { in get_pointer_64()
2962 left = SectSize - offset; in get_pointer_64()
7123 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
7128 if (Start > SectSize) { in DisassembleMachO()
7154 uint64_t End = containsNextSym ? std::min(NextSym, SectSize) : SectSize; in DisassembleMachO()
7289 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
[all …]
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp1887 uint64_t SectSize; in getSectionSize() local
1892 SectSize = Sect.size; in getSectionSize()
1897 SectSize = Sect.size; in getSectionSize()
1901 return SectSize; in getSectionSize()
1905 if (FileSize - SectOffset < SectSize) in getSectionSize()
1907 return SectSize; in getSectionSize()