Lines Matching full:addend
122 /// Addend - the relocation addend encoded in the instruction itself. Also
124 int64_t Addend; variable
153 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) in RelocationEntry() argument
154 : Offset(offset), Addend(addend), SectionID(id), RelType(type), in RelocationEntry()
157 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
159 : Offset(offset), Addend(addend), SectionID(id), RelType(type), in RelocationEntry()
163 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
165 : Offset(offset), Addend(addend), SectionID(id), RelType(type), in RelocationEntry()
168 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
171 : Offset(offset), Addend(SectionAOffset - SectionBOffset + addend), in RelocationEntry()
178 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument
182 : Offset(offset), Addend(SectionAOffset - SectionBOffset + addend), in RelocationEntry()
194 int64_t Addend = 0; variable
200 Addend == Other.Addend && SymbolName == Other.SymbolName &&
208 if (Addend != Other.Addend)
209 return Addend < Other.Addend;