Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1933 uint64_t SectSize; in getSectionSize() local
1938 SectSize = Sect.size; in getSectionSize()
1943 SectSize = Sect.size; in getSectionSize()
1947 return SectSize; in getSectionSize()
1951 if (FileSize - SectOffset < SectSize) in getSectionSize()
1953 return SectSize; in getSectionSize()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1507 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection() local
1535 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0'; in DumpLiteralPointerSection()
3274 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize(); in get_pointer_64() local
3275 if (SectSize == 0) in get_pointer_64()
3291 if (Address >= SectAddress && Address < SectAddress + SectSize) { in get_pointer_64()
3294 left = SectSize - offset; in get_pointer_64()
7541 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
7546 if (Start > SectSize) { in DisassembleMachO()
7570 uint64_t End = containsNextSym ? std::min(NextSym, SectSize) : SectSize; in DisassembleMachO()
7690 uint64_t SectSize = Sections[SectIdx].getSize(); in DisassembleMachO() local
[all …]
H A Dllvm-objdump.cpp1238 uint64_t SectSize = Section.getSize(); in disassembleObject() local
1239 if (!SectSize) in disassembleObject()
1318 uint64_t End = std::min<uint64_t>(SectionAddr + SectSize, StopAddress); in disassembleObject()