Lines Matching defs:RotAmt
11354 auto RotateAndPermute = [&](SDValue Lo, SDValue Hi, int RotAmt, int Ofs) {
11359 DAG.getTargetConstant(Scale * RotAmt, DL, MVT::i8)));
11367 PermMask[Lane + Elt] = Lane + ((M + Ofs - RotAmt) % NumEltsPerLane);
11369 PermMask[Lane + Elt] = Lane + ((M - Ofs - RotAmt) % NumEltsPerLane);
31008 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
31010 DAG.getTargetConstant(RotAmt, DL, MVT::i8));
31040 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
31041 SDValue Mask = getGFNICtrlMask(Opcode, DAG, DL, VT, RotAmt);
31059 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
31061 DAG.getTargetConstant(RotAmt, DL, MVT::i8));
31072 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
31073 uint64_t ShlAmt = IsROTL ? RotAmt : (EltSizeInBits - RotAmt);
31074 uint64_t SrlAmt = IsROTL ? (EltSizeInBits - RotAmt) : RotAmt;