Lines Matching refs:Delta
745 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
746 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
750 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
751 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
755 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
756 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
781 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
782 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
800 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset); in resolveSystemZRelocation() local
801 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
802 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
807 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset); in resolveSystemZRelocation() local
808 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow"); in resolveSystemZRelocation()
809 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
813 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset); in resolveSystemZRelocation() local
814 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow"); in resolveSystemZRelocation()
815 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation()