Lines Matching defs:RoundWidth
554 unsigned RoundWidth = 1 << LogStWidth;
555 assert(RoundWidth < StWidthBits);
556 unsigned ExtraWidth = StWidthBits - RoundWidth;
557 assert(ExtraWidth < RoundWidth);
558 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
560 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
567 // Store the bottom RoundWidth bits.
572 IncrementSize = RoundWidth / 8;
577 DAG.getConstant(RoundWidth, dl,
585 // Store the top RoundWidth bits.
594 IncrementSize = RoundWidth / 8;
766 unsigned RoundWidth = 1 << LogSrcWidth;
767 assert(RoundWidth < SrcWidthBits);
768 unsigned ExtraWidth = SrcWidthBits - RoundWidth;
769 assert(ExtraWidth < RoundWidth);
770 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
772 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
780 // Load the bottom RoundWidth bits.
786 IncrementSize = RoundWidth / 8;
801 DAG.getConstant(RoundWidth, dl,
809 // Load the top RoundWidth bits.
815 IncrementSize = RoundWidth / 8;