Lines Matching defs:ByteOffset
633 size_t ByteOffset = 0;
634 for (; Bytes - ByteOffset >= 4; ByteOffset += 4)
636 X86::MOV32mi, ByteOffset,
637 WideConstant.extractBits(32, ByteOffset * 8).getZExtValue()));
638 if (Bytes - ByteOffset >= 2) {
640 X86::MOV16mi, ByteOffset,
641 WideConstant.extractBits(16, ByteOffset * 8).getZExtValue()));
642 ByteOffset += 2;
644 if (Bytes - ByteOffset >= 1)
646 X86::MOV8mi, ByteOffset,
647 WideConstant.extractBits(8, ByteOffset * 8).getZExtValue()));