Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSMTConv.h659 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/
DDerivedTypes.h726 Type *Type::getWithNewBitWidth(unsigned NewBitWidth) const { in getWithNewBitWidth() argument
730 return getWithNewType(getIntNTy(getContext(), NewBitWidth)); in getWithNewBitWidth()
DType.h392 inline Type *getWithNewBitWidth(unsigned NewBitWidth) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DAPInt.cpp124 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/
DInstCombineSelect.cpp2209 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/
DAPInt.h165 void reallocate(unsigned NewBitWidth);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DExprConstant.cpp2651 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx); in truncateBitfieldValue() local
2652 if (NewBitWidth < OldBitWidth) in truncateBitfieldValue()
2653 Int = Int.trunc(NewBitWidth).extend(OldBitWidth); in truncateBitfieldValue()