Lines Matching refs:ByteOffset
600 size_t ByteOffset = 0; in initStack() local
601 for (; Bytes - ByteOffset >= 4; ByteOffset += 4) in initStack()
603 X86::MOV32mi, ByteOffset, in initStack()
604 WideConstant.extractBits(32, ByteOffset * 8).getZExtValue())); in initStack()
605 if (Bytes - ByteOffset >= 2) { in initStack()
607 X86::MOV16mi, ByteOffset, in initStack()
608 WideConstant.extractBits(16, ByteOffset * 8).getZExtValue())); in initStack()
609 ByteOffset += 2; in initStack()
611 if (Bytes - ByteOffset >= 1) in initStack()
613 X86::MOV8mi, ByteOffset, in initStack()
614 WideConstant.extractBits(8, ByteOffset * 8).getZExtValue())); in initStack()