Home
last modified time | relevance | path

Searched refs:SegIndex (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h137 const char *checkSegAndOffsets(int32_t SegIndex, uint64_t SegOffset,
141 StringRef segmentName(int32_t SegIndex);
142 StringRef sectionName(int32_t SegIndex, uint64_t SegOffset);
143 uint64_t address(uint32_t SegIndex, uint64_t SegOffset);
155 const SectionInfo &findSection(int32_t SegIndex, uint64_t SegOffset);
578 const char *BindEntryCheckSegAndOffsets(int32_t SegIndex, uint64_t SegOffset,
582 return BindRebaseSectionTable->checkSegAndOffsets(SegIndex, SegOffset,
592 const char *RebaseEntryCheckSegAndOffsets(int32_t SegIndex,
597 return BindRebaseSectionTable->checkSegAndOffsets(SegIndex, SegOffset,
603 StringRef BindRebaseSegmentName(int32_t SegIndex) const { in BindRebaseSegmentName() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp4391 const char *BindRebaseSegInfo::checkSegAndOffsets(int32_t SegIndex, in checkSegAndOffsets() argument
4396 if (SegIndex == -1) in checkSegAndOffsets()
4398 if (SegIndex >= MaxSegIndex) in checkSegAndOffsets()
4405 if (SI.SegmentIndex != SegIndex) in checkSegAndOffsets()
4424 StringRef BindRebaseSegInfo::segmentName(int32_t SegIndex) { in segmentName() argument
4426 if (SI.SegmentIndex == SegIndex) in segmentName()
4435 int32_t SegIndex, uint64_t SegOffset) { in findSection() argument
4437 if (SI.SegmentIndex != SegIndex) in findSection()
4450 StringRef BindRebaseSegInfo::sectionName(int32_t SegIndex, in sectionName() argument
4452 return findSection(SegIndex, SegOffset).SectionName; in sectionName()
[all …]