Lines Matching refs:LocalAddress
64 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in decodeAddend() local
70 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in decodeAddend()
81 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in decodeAddend()
87 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend()
205 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset); in resolveRelocation() local
220 uint16_t HighInsn = readBytesUnaligned(LocalAddress, 2); in resolveRelocation()
225 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation()
230 writeBytesUnaligned(HighInsn, LocalAddress, 2); in resolveRelocation()
231 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2); in resolveRelocation()
238 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size); in resolveRelocation()
253 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); in resolveRelocation()
254 writeBytesUnaligned((Temp & ~0xffffff) | FinalValue, LocalAddress, 4); in resolveRelocation()
271 uint32_t Insn = readBytesUnaligned(LocalAddress, 4); in resolveRelocation()
279 writeBytesUnaligned(Insn, LocalAddress, 4); in resolveRelocation()
363 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset); in processHALFSECTDIFFRelocation() local
364 int64_t Immediate = readBytesUnaligned(LocalAddress, 4); // Copy the whole instruction out. in processHALFSECTDIFFRelocation()