• Home
  • Raw
  • Download

Lines Matching refs:Rel

603 void MachOObjectFile::moveRelocationNext(DataRefImpl &Rel) const {  in moveRelocationNext()
604 ++Rel.d.b; in moveRelocationNext()
607 uint64_t MachOObjectFile::getRelocationOffset(DataRefImpl Rel) const { in getRelocationOffset()
610 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationOffset()
615 MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
616 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationSymbol()
636 MachOObjectFile::getRelocationSection(DataRefImpl Rel) const { in getRelocationSection()
637 return section_iterator(getAnyRelocationSection(getRelocation(Rel))); in getRelocationSection()
640 uint64_t MachOObjectFile::getRelocationType(DataRefImpl Rel) const { in getRelocationType()
641 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationType()
646 DataRefImpl Rel, SmallVectorImpl<char> &Result) const { in getRelocationTypeName() argument
648 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName()
754 uint8_t MachOObjectFile::getRelocationLength(DataRefImpl Rel) const { in getRelocationLength()
755 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationLength()
938 MachOObjectFile::getRelocationRelocatedSection(relocation_iterator Rel) const { in getRelocationRelocatedSection()
940 Sec.d.a = Rel->getRawDataRefImpl().d.a; in getRelocationRelocatedSection()
2101 MachOObjectFile::getRelocation(DataRefImpl Rel) const { in getRelocation()
2103 Sec.d.a = Rel.d.a; in getRelocation()
2114 getPtr(this, Offset)) + Rel.d.b; in getRelocation()
2120 MachOObjectFile::getDice(DataRefImpl Rel) const { in getDice()
2121 const char *P = reinterpret_cast<const char *>(Rel.p); in getDice()