Searched refs:NewBitWidth (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConv.h655 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy); local
656 LHS = (*doCast)(Solver, LHS, NewTy, NewBitWidth, LTy, LBitWidth);
658 LBitWidth = NewBitWidth;
662 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy); local
663 RHS = (*doCast)(Solver, RHS, NewTy, NewBitWidth, RTy, RBitWidth);
665 RBitWidth = NewBitWidth;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h708 Type *Type::getWithNewBitWidth(unsigned NewBitWidth) const {
712 Type *NewType = getIntNTy(getContext(), NewBitWidth);
H A DType.h377 inline Type *getWithNewBitWidth(unsigned NewBitWidth) const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2210 unsigned NewBitWidth = (*MaxValue + 1).logBase2() + 1; local
2213 if (!shouldChangeType(Ty->getScalarType()->getIntegerBitWidth(), NewBitWidth))
2222 Type *NewTy = Ty->getWithNewBitWidth(NewBitWidth);
2230 if (A->getType()->getScalarSizeInBits() > NewBitWidth ||
2231 B->getType()->getScalarSizeInBits() > NewBitWidth)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp124 void APInt::reallocate(unsigned NewBitWidth) { argument
126 if (getNumWords() == getNumWords(NewBitWidth)) {
127 BitWidth = NewBitWidth;
136 BitWidth = NewBitWidth;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h169 void reallocate(unsigned NewBitWidth);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp2449 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx);
2450 if (NewBitWidth < OldBitWidth)
2451 Int = Int.trunc(NewBitWidth).extend(OldBitWidth);

Completed in 107 milliseconds