Lines Matching defs:getBitWidth
362 uint32_t clang::ento::RangeSet::getBitWidth() const {
364 return begin()->From().getBitWidth();
682 const bool IsTruncation = What.getBitWidth() > Ty.getBitWidth();
683 const bool IsPromotion = What.getBitWidth() < Ty.getBitWidth();
725 uint64_t CastRangeSize = APInt::getMaxValue(Ty.getBitWidth()).getZExtValue();
1658 if (LHS.isUnsigned() && (LHS.getBitWidth() >= RHS.getBitWidth())) {
1663 } else if (RHS.isUnsigned() && (LHS.getBitWidth() <= RHS.getBitWidth())) {
1671 APSIntType CastingType(std::max(LHS.getBitWidth(), RHS.getBitWidth()),
3288 Out << RS.getBitWidth() << (RS.isUnsigned() ? "u:" : "s:");