Lines Matching defs:ToWidth
148 unsigned ToWidth) const;
1862 auto WordX = HVC.splitVectorElements(Builder, Op.X.Val, /*ToWidth=*/32);
1863 auto WordY = HVC.splitVectorElements(Builder, Op.Y.Val, /*ToWidth=*/32);
2627 unsigned ToWidth) const
2633 // (a0, a1, a2, ...) // lowest "ToWidth" bits
2644 assert(isPowerOf2_32(ToWidth) && isPowerOf2_32(FromWidth));
2645 assert(ToWidth <= FromWidth && "Breaking up into wider elements?");
2646 unsigned NumResults = FromWidth / ToWidth;
2696 unsigned ToWidth = ToType->getScalarSizeInBits();
2698 assert(Width <= ToWidth);
2699 assert(isPowerOf2_32(Width) && isPowerOf2_32(ToWidth));
2702 unsigned NeedInputs = ToWidth / Width;