Lines Matching refs:rels
481 template <class ELFT, class RelTy> void scan(Relocs<RelTy> rels);
1553 static void checkPPC64TLSRelax(InputSectionBase &sec, Relocs<RelTy> rels) { in checkPPC64TLSRelax() argument
1558 for (const RelTy &rel : rels) { in checkPPC64TLSRelax()
1585 void RelocationScanner::scan(Relocs<RelTy> rels) { in scan() argument
1587 sec->relocations.reserve(rels.size()); in scan()
1590 checkPPC64TLSRelax<RelTy>(*sec, rels); in scan()
1599 rels = sortRels(rels, storage); in scan()
1602 for (auto i = rels.begin(); i != rels.end();) in scan()
1606 end = static_cast<const void *>(rels.end()); in scan()
1607 for (auto i = rels.begin(); i != end;) in scan()
1625 const RelsOrRelas<ELFT> rels = s.template relsOrRelas<ELFT>(!isEH); in scanSection() local
1626 if (rels.areRelocsCrel()) in scanSection()
1627 scan<ELFT>(rels.crels); in scanSection()
1628 else if (rels.areRelocsRel()) in scanSection()
1629 scan<ELFT>(rels.rels); in scanSection()
1631 scan<ELFT>(rels.relas); in scanSection()
2409 InputSection *sec, Rels rels) { in scanCrossRefs() argument
2410 for (const auto &r : rels) { in scanCrossRefs()