Lines Matching refs:Delta

974     uint64_t Delta = Value - FinalAddress + Addend;  in resolvePPC64Relocation()  local
975 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
979 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
980 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
984 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
985 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
1010 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
1011 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
1029 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
1030 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
1031 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
1036 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
1037 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow"); in resolveSystemZRelocation()
1038 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
1042 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
1043 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow"); in resolveSystemZRelocation()
1044 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation()