Lines Matching defs:ByteShift
6181 uint64_t ByteShift = ShiftVal / 8;
6189 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j)
6190 Mask[i + j] = i + j - ByteShift;
6193 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j)
6194 Mask[i + j - ByteShift] = i + j;
11666 bool ByteShift = ShiftEltBits > 64;
11667 Opcode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI)
11668 : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI);
11669 int ShiftAmt = Shift * ScalarSizeInBits / (ByteShift ? 8 : 1);
11673 Scale = ByteShift ? Scale / 2 : Scale;
11677 ShiftVT = ByteShift ? MVT::getVectorVT(MVT::i8, SizeInBits / 8)
25306 SDValue ByteShift = DAG.getTargetConstant(
25310 ByteShift);
25312 ByteShift);