Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:NumBits

386   int NumBits = NewStoredVT.getSizeInBits();
387 int IncrementSize = NumBits / 8;
390 SDValue ShiftAmount = DAG.getConstant(NumBits,
509 unsigned NumBits = LoadedVT.getSizeInBits();
511 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
512 NumBits >>= 1;
515 unsigned IncrementSize = NumBits / 8;
547 SDValue ShiftAmount = DAG.getConstant(NumBits,
2336 /// SplatByte - Distribute ByteVal over NumBits bits.
2338 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2339 APInt Val = APInt(NumBits, ByteVal);
2341 for (unsigned i = NumBits; i > 8; i >>= 1) {