Home
last modified time | relevance | path

Searched refs:DeltaOffset (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCELFExtras.h35 auto DeltaOffset = static_cast<uint>((CR.r_offset - Offset) >> Shift); in encodeCrel() local
37 uint8_t B = (DeltaOffset << 3) + (SymIdx != CR.r_symidx) + in encodeCrel()
40 if (DeltaOffset < 0x10) { in encodeCrel()
44 encodeULEB128(DeltaOffset >> 4, OS); in encodeCrel()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1308 auto DeltaOffset = in writeSectionContent() local
1312 DeltaOffset * 8 + (SymIdx != CurSymIdx) + (Type != Rel.Type ? 2 : 0) + in writeSectionContent()
1314 if (DeltaOffset < 0x10) { in writeSectionContent()
1318 CBA.writeULEB128(DeltaOffset >> 4); in writeSectionContent()