Home | History | Annotate | Download | only in CodeGen

Lines Matching full:bitwidth

1234     unsigned Bitwidth = LTy->getScalarSizeInBits();
1240 assert(NumBits <= Bitwidth);
1241 End = llvm::APInt(Bitwidth
1244 assert(NumPositiveBits <= Bitwidth);
1245 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
1246 Min = llvm::APInt(Bitwidth, 0);