Searched refs:LowInsn (Results 1 - 1 of 1) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOARM.h87 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2);
88 if ((LowInsn & 0xf800) != 0xf800)
94 ((LowInsn & 0x7ff) << 1));
225 uint16_t LowInsn = readBytesUnaligned(LocalAddress + 2, 2); variable
226 assert((LowInsn & 0xf800) == 0xf800 &&
228 LowInsn = (LowInsn & 0xf800) | ((Value >> 1) & 0x7ff);
231 writeBytesUnaligned(LowInsn, LocalAddress + 2, 2);

Completed in 273 milliseconds