Lines Matching refs:RelTy
342 template <class ELFT, class RelTy>
343 void InputSection::copyRelocations(uint8_t *buf, ArrayRef<RelTy> rels) { in copyRelocations()
348 for (const RelTy &rel : rels) { in copyRelocations()
354 buf += sizeof(RelTy); in copyRelocations()
356 if (RelTy::IsRela) in copyRelocations()
400 if (!RelTy::IsRela) in copyRelocations()
419 if (RelTy::IsRela) in copyRelocations()
816 template <class ELFT, class RelTy>
817 void InputSection::relocateNonAlloc(uint8_t *buf, ArrayRef<RelTy> rels) { in relocateNonAlloc()
831 for (const RelTy &rel : rels) { in relocateNonAlloc()
844 if (!RelTy::IsRela) in relocateNonAlloc()
1264 template <class IntTy, class RelTy>
1265 static unsigned getReloc(IntTy begin, IntTy size, const ArrayRef<RelTy> &rels, in getReloc()
1270 const RelTy &rel = rels[relocI]; in getReloc()
1296 template <class ELFT, class RelTy>
1297 void EhInputSection::split(ArrayRef<RelTy> rels) { in split()