Lines Matching defs:InpWidth
1574 unsigned InpWidth = InpTy.getSizeInBits();
1578 return InpWidth < ResWidth
1586 if (InpWidth < ResWidth) {
3284 unsigned InpWidth = InpTy.getVectorElementType().getSizeInBits();
3286 assert(InpWidth != ResWidth);
3288 if (InpWidth == 2 * ResWidth || ResWidth == 2 * InpWidth)
3310 if (InpWidth < ResWidth) {
3311 assert(ResWidth % InpWidth == 0 && isPowerOf2_32(ResWidth / InpWidth));
3312 while (InpWidth * 2 <= ResWidth)
3313 S = repeatOp(InpWidth *= 2, S);
3315 // InpWidth > ResWidth
3316 assert(InpWidth % ResWidth == 0 && isPowerOf2_32(InpWidth / ResWidth));
3317 while (InpWidth / 2 >= ResWidth)
3318 S = repeatOp(InpWidth /= 2, S);
3328 unsigned InpWidth = InpTy.getSizeInBits();
3338 InpWidth < ResWidth ? typeWidenToWider(typeWidenToHvx(InpTy), ResTy)
3350 } else if (shouldSplitToHvx(InpWidth < ResWidth ? ResTy : InpTy, DAG)) {