Lines Matching defs:ByteSize
2546 /// the constant being splatted. The ByteSize field indicates the number of
2548 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
2551 // If ByteSize of the splat is bigger than the element size of the
2556 if (EltSize < ByteSize) {
2557 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
2629 if (ValSizeInBytes < ByteSize) return SDValue();
2632 // of a repeated bit pattern of size ByteSize.
2633 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
2637 int MaskVal = SignExtend32(Value, ByteSize * 8);
15683 unsigned ByteSize = Op1VT.getScalarSizeInBits() / 8;
15685 DAG.getIntPtrConstant(ByteSize, dl, false),