Lines Matching refs:Rel
2133 void MachOObjectFile::moveRelocationNext(DataRefImpl &Rel) const { in moveRelocationNext()
2134 ++Rel.d.b; in moveRelocationNext()
2137 uint64_t MachOObjectFile::getRelocationOffset(DataRefImpl Rel) const { in getRelocationOffset()
2141 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationOffset()
2146 MachOObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
2147 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationSymbol()
2167 MachOObjectFile::getRelocationSection(DataRefImpl Rel) const { in getRelocationSection()
2168 return section_iterator(getAnyRelocationSection(getRelocation(Rel))); in getRelocationSection()
2171 uint64_t MachOObjectFile::getRelocationType(DataRefImpl Rel) const { in getRelocationType()
2172 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationType()
2177 DataRefImpl Rel, SmallVectorImpl<char> &Result) const { in getRelocationTypeName() argument
2179 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName()
2286 uint8_t MachOObjectFile::getRelocationLength(DataRefImpl Rel) const { in getRelocationLength()
2287 MachO::any_relocation_info RE = getRelocation(Rel); in getRelocationLength()
2492 MachOObjectFile::getRelocationRelocatedSection(relocation_iterator Rel) const { in getRelocationRelocatedSection()
2494 Sec.d.a = Rel->getRawDataRefImpl().d.a; in getRelocationRelocatedSection()
4424 MachOObjectFile::getRelocation(DataRefImpl Rel) const { in getRelocation()
4428 Sec.d.a = Rel.d.a; in getRelocation()
4438 if (Rel.d.a == 0) in getRelocation()
4445 getPtr(*this, Offset)) + Rel.d.b; in getRelocation()
4451 MachOObjectFile::getDice(DataRefImpl Rel) const { in getDice()
4452 const char *P = reinterpret_cast<const char *>(Rel.p); in getDice()