Searched refs:NewBitWidth (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | SMTConv.h | 659 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy); in doIntTypeConversion() local 660 LHS = (*doCast)(Solver, LHS, NewTy, NewBitWidth, LTy, LBitWidth); in doIntTypeConversion() 662 LBitWidth = NewBitWidth; in doIntTypeConversion() 666 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy); in doIntTypeConversion() local 667 RHS = (*doCast)(Solver, RHS, NewTy, NewBitWidth, RTy, RBitWidth); in doIntTypeConversion() 669 RBitWidth = NewBitWidth; in doIntTypeConversion()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | DerivedTypes.h | 726 Type *Type::getWithNewBitWidth(unsigned NewBitWidth) const { in getWithNewBitWidth() argument 730 return getWithNewType(getIntNTy(getContext(), NewBitWidth)); in getWithNewBitWidth()
|
| D | Type.h | 392 inline Type *getWithNewBitWidth(unsigned NewBitWidth) const;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | APInt.cpp | 124 void APInt::reallocate(unsigned NewBitWidth) { in reallocate() argument 126 if (getNumWords() == getNumWords(NewBitWidth)) { in reallocate() 127 BitWidth = NewBitWidth; in reallocate() 136 BitWidth = NewBitWidth; in reallocate()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| D | InstCombineSelect.cpp | 2209 unsigned NewBitWidth = (*MaxValue + 1).logBase2() + 1; in matchSAddSubSat() local 2212 if (!shouldChangeType(Ty->getScalarType()->getIntegerBitWidth(), NewBitWidth)) in matchSAddSubSat() 2221 Type *NewTy = Ty->getWithNewBitWidth(NewBitWidth); in matchSAddSubSat() 2229 if (A->getType()->getScalarSizeInBits() > NewBitWidth || in matchSAddSubSat() 2230 B->getType()->getScalarSizeInBits() > NewBitWidth) in matchSAddSubSat()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| D | APInt.h | 165 void reallocate(unsigned NewBitWidth);
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | ExprConstant.cpp | 2651 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx); in truncateBitfieldValue() local 2652 if (NewBitWidth < OldBitWidth) in truncateBitfieldValue() 2653 Int = Int.trunc(NewBitWidth).extend(OldBitWidth); in truncateBitfieldValue()
|