Searched refs:LowInsn (Results 1 – 1 of 1) sorted by relevance
87 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in decodeAddend() local88 if ((LowInsn & 0xf800) != 0xf800) in decodeAddend()94 ((LowInsn & 0x7ff) << 1)); in decodeAddend()225 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); in resolveRelocation() local226 assert((LowInsn & 0xf800) == 0xf800 && in resolveRelocation()228 LowInsn = (LowInsn & 0xf800) | ((Value >> 1) & 0x7ff); in resolveRelocation()231 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2); in resolveRelocation()