Lines Matching refs:RelTy
355 template <class ELFT, class RelTy>
356 void InputSection::copyRelocations(uint8_t *buf, ArrayRef<RelTy> rels) { in copyRelocations()
361 for (const RelTy &rel : rels) { in copyRelocations()
367 buf += sizeof(RelTy); in copyRelocations()
369 if (RelTy::IsRela) in copyRelocations()
413 if (!RelTy::IsRela) in copyRelocations()
432 if (RelTy::IsRela) in copyRelocations()
829 template <class ELFT, class RelTy>
830 void InputSection::relocateNonAlloc(uint8_t *buf, ArrayRef<RelTy> rels) { in relocateNonAlloc()
844 for (const RelTy &rel : rels) { in relocateNonAlloc()
857 if (!RelTy::IsRela) in relocateNonAlloc()
1168 template <class ELFT, class RelTy>
1169 void EhInputSection::split(ArrayRef<RelTy> rels) { in split()