Lines Matching defs:ByteShift
6374 uint64_t ByteShift = *Amt / 8;
6382 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j)
6383 Mask[i + j] = i + j - ByteShift;
6386 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j)
6387 Mask[i + j - ByteShift] = i + j;
6404 uint64_t ByteShift = ShiftVal / 8;
6412 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j)
6413 Mask[i + j] = i + j - ByteShift;
6416 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j)
6417 Mask[i + j - ByteShift] = i + j;
11929 bool ByteShift = ShiftEltBits > 64;
11930 Opcode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI)
11931 : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI);
11932 int ShiftAmt = Shift * ScalarSizeInBits / (ByteShift ? 8 : 1);
11936 Scale = ByteShift ? Scale / 2 : Scale;
11940 ShiftVT = ByteShift ? MVT::getVectorVT(MVT::i8, SizeInBits / 8)
25796 SDValue ByteShift = DAG.getTargetConstant(
25800 ByteShift);
25802 ByteShift);