Lines Matching refs:RelTy
355 template <class ELFT, class RelTy>
362 copyRelocations<ELFT, RelTy>(buf, llvm::make_range(sec->relocations.begin(), in copyRelocations()
369 Relocation operator()(const RelTy &rel) const { in copyRelocations()
376 using RawRels = ArrayRef<RelTy>; in copyRelocations()
380 RawRels rawRels = getDataAs<RelTy>(); in copyRelocations()
383 copyRelocations<ELFT, RelTy>(buf, rels); in copyRelocations()
390 template <class ELFT, class RelTy, class RelIt>
403 buf += sizeof(RelTy); in copyRelocations()
405 if (RelTy::IsRela) in copyRelocations()
446 if (!RelTy::IsRela) in copyRelocations()
465 if (RelTy::IsRela) in copyRelocations()
896 template <class ELFT, class RelTy>
897 void InputSection::relocateNonAlloc(uint8_t *buf, ArrayRef<RelTy> rels) { in relocateNonAlloc()
919 const RelTy &rel = rels[i]; in relocateNonAlloc()
924 if (!RelTy::IsRela) in relocateNonAlloc()
1001 if (config->relocatable && (RelTy::IsRela || sym.type != STT_SECTION)) in relocateNonAlloc()
1249 template <class ELFT, class RelTy>
1250 void EhInputSection::split(ArrayRef<RelTy> rels) { in split()