Lines Matching full:bytesize
665 /// the constant being splatted. The ByteSize field indicates the number of
667 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
670 // If ByteSize of the splat is bigger than the element size of the
675 if (EltSize < ByteSize) {
676 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
749 if (ValSizeInBytes < ByteSize) return SDValue();
753 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
754 while (ValSizeInBytes > ByteSize) {
764 int ShAmt = (4-ByteSize)*8;