Lines Matching refs:LocalAddress
65 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local
71 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in decodeAddend()
82 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in decodeAddend()
88 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend()
206 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local
221 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in resolveRelocation()
226 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation()
231 writeBytesUnaligned(HighInsn, LocalAddress, 2); in resolveRelocation()
232 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2); in resolveRelocation()
239 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation()
254 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in resolveRelocation()
255 writeBytesUnaligned((Temp & ~0xffffff) | FinalValue, LocalAddress, 4); in resolveRelocation()
272 uint32_t Insn = readBytesUnaligned(LocalAddress, 4); in resolveRelocation()
280 writeBytesUnaligned(Insn, LocalAddress, 4); in resolveRelocation()
364 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processHALFSECTDIFFRelocation() local
365 int64_t Immediate = readBytesUnaligned(LocalAddress, 4); // Copy the whole instruction out. in processHALFSECTDIFFRelocation()