Lines Matching defs:RotAmt
11094 auto RotateAndPermute = [&](SDValue Lo, SDValue Hi, int RotAmt, int Ofs) {
11099 DAG.getTargetConstant(Scale * RotAmt, DL, MVT::i8)));
11107 PermMask[Lane + Elt] = Lane + ((M + Ofs - RotAmt) % NumEltsPerLane);
11109 PermMask[Lane + Elt] = Lane + ((M - Ofs - RotAmt) % NumEltsPerLane);
30178 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
30180 DAG.getTargetConstant(RotAmt, DL, MVT::i8));
30210 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
30211 SDValue Mask = getGFNICtrlMask(Opcode, DAG, DL, VT, RotAmt);
30229 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
30231 DAG.getTargetConstant(RotAmt, DL, MVT::i8));
30242 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits);
30243 uint64_t ShlAmt = IsROTL ? RotAmt : (EltSizeInBits - RotAmt);
30244 uint64_t SrlAmt = IsROTL ? (EltSizeInBits - RotAmt) : RotAmt;