Lines Matching refs:Rel
1287 for (const ELFYAML::Relocation &Rel : *Section.Relocations) in writeSectionContent()
1288 OffsetMask |= Rel.Offset; in writeSectionContent()
1293 for (const ELFYAML::Relocation &Rel : *Section.Relocations) { in writeSectionContent()
1296 Rel.Symbol ? toSymbolIndex(*Rel.Symbol, Section.Name, IsDynamic) : 0; in writeSectionContent()
1302 (static_cast<typename ELFT::uint>(Rel.Offset) - Offset) >> Shift; in writeSectionContent()
1303 Offset = Rel.Offset; in writeSectionContent()
1305 DeltaOffset * 8 + (SymIdx != CurSymIdx) + (Type != Rel.Type ? 2 : 0) + in writeSectionContent()
1306 (Addend != static_cast<typename ELFT::uint>(Rel.Addend) ? 4 : 0); in writeSectionContent()
1320 CBA.writeSLEB128(static_cast<int32_t>(Rel.Type - Type)); in writeSectionContent()
1321 Type = Rel.Type; in writeSectionContent()
1325 std::make_signed_t<typename ELFT::uint>(Rel.Addend - Addend)); in writeSectionContent()
1326 Addend = Rel.Addend; in writeSectionContent()
1331 REntry.r_offset = Rel.Offset; in writeSectionContent()
1332 REntry.r_addend = Rel.Addend; in writeSectionContent()
1333 REntry.setSymbolAndType(CurSymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
1338 REntry.r_offset = Rel.Offset; in writeSectionContent()
1339 REntry.setSymbolAndType(CurSymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()