Lines Matching refs:Delta

844     uint64_t Delta = Value - FinalAddress + Addend;  in resolvePPC64Relocation()  local
845 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
849 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
850 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
854 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
855 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
881 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
882 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
900 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
901 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
902 writeInt16BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
907 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
908 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow"); in resolveSystemZRelocation()
909 writeInt32BE(LocalAddress, Delta / 2); in resolveSystemZRelocation()
913 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
914 assert(int16_t(Delta) == Delta && "R_390_PC16 overflow"); in resolveSystemZRelocation()
915 writeInt16BE(LocalAddress, Delta); in resolveSystemZRelocation()
919 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
920 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow"); in resolveSystemZRelocation()
921 writeInt32BE(LocalAddress, Delta); in resolveSystemZRelocation()
925 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
926 writeInt64BE(LocalAddress, Delta); in resolveSystemZRelocation()