Lines Matching defs:Rel
662 for (RelAndSymbol &Rel : Relocations[&Section]) {
663 if (!Rel.Sym)
667 unsigned Index = Rel.Sym->getIndex();
670 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27);
672 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4);
1039 for (const RelAndSymbol &Rel : llvm::reverse(Relocs)) {
1040 W.write<uint32_t>(Rel.MRE.r_word0);
1041 W.write<uint32_t>(Rel.MRE.r_word1);