Lines Matching refs:Delta
884 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
885 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
889 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
890 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
894 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
895 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
921 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
922 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
940 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
941 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
942 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
947 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
948 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow"); in resolveSystemZRelocation()
949 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
953 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
954 assert(int16_t(Delta) == Delta && "R_390_PC16 overflow"); in resolveSystemZRelocation()
955 writeInt16BE(LocalAddress, Delta); in resolveSystemZRelocation()
959 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
960 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow"); in resolveSystemZRelocation()
961 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation()
965 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
966 writeInt64BE(LocalAddress, Delta); in resolveSystemZRelocation()