Home | History | Annotate | Download | only in CodeGen

Lines Matching full:bitwidth

1022     unsigned Bitwidth = LTy->getScalarSizeInBits();
1028 assert(NumBits <= Bitwidth);
1029 End = llvm::APInt(Bitwidth, 1) << (NumBits - 1);
1032 assert(NumPositiveBits <= Bitwidth);
1033 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
1034 Min = llvm::APInt(Bitwidth, 0);