Home | History | Annotate | Download | only in SelectionDAG

Lines Matching full:numbits

390   int NumBits = NewStoredVT.getSizeInBits();
391 int IncrementSize = NumBits / 8;
394 SDValue ShiftAmount = DAG.getConstant(NumBits,
514 unsigned NumBits = LoadedVT.getSizeInBits();
516 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
517 NumBits >>= 1;
520 unsigned IncrementSize = NumBits / 8;
552 SDValue ShiftAmount = DAG.getConstant(NumBits,
2365 /// SplatByte - Distribute ByteVal over NumBits bits.
2367 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2368 APInt Val = APInt(NumBits, ByteVal);
2370 for (unsigned i = NumBits; i > 8; i >>= 1) {