Lines Matching refs:Rel
947 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel()
948 return reinterpret_cast<const coff_relocation*>(Rel.p); in toRel()
951 void COFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const { in moveRelocationNext()
952 Rel.p = reinterpret_cast<uintptr_t>( in moveRelocationNext()
953 reinterpret_cast<const coff_relocation*>(Rel.p) + 1); in moveRelocationNext()
956 uint64_t COFFObjectFile::getRelocationOffset(DataRefImpl Rel) const { in getRelocationOffset()
957 const coff_relocation *R = toRel(Rel); in getRelocationOffset()
961 symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
962 const coff_relocation *R = toRel(Rel); in getRelocationSymbol()
975 uint64_t COFFObjectFile::getRelocationType(DataRefImpl Rel) const { in getRelocationType()
976 const coff_relocation* R = toRel(Rel); in getRelocationType()
1017 DataRefImpl Rel, SmallVectorImpl<char> &Result) const { in getRelocationTypeName() argument
1018 const coff_relocation *Reloc = toRel(Rel); in getRelocationTypeName()