Lines Matching refs:Rel
1149 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel()
1150 return reinterpret_cast<const coff_relocation*>(Rel.p); in toRel()
1153 void COFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const { in moveRelocationNext()
1154 Rel.p = reinterpret_cast<uintptr_t>( in moveRelocationNext()
1155 reinterpret_cast<const coff_relocation*>(Rel.p) + 1); in moveRelocationNext()
1158 uint64_t COFFObjectFile::getRelocationOffset(DataRefImpl Rel) const { in getRelocationOffset()
1159 const coff_relocation *R = toRel(Rel); in getRelocationOffset()
1163 symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
1164 const coff_relocation *R = toRel(Rel); in getRelocationSymbol()
1177 uint64_t COFFObjectFile::getRelocationType(DataRefImpl Rel) const { in getRelocationType()
1178 const coff_relocation* R = toRel(Rel); in getRelocationType()
1311 DataRefImpl Rel, SmallVectorImpl<char> &Result) const { in getRelocationTypeName() argument
1312 const coff_relocation *Reloc = toRel(Rel); in getRelocationTypeName()