Home
last modified time | relevance | path

Searched refs:isUnsignedIntegerType (Results 1 – 21 of 21) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp190 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DPrintfFormatString.cpp811 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
842 else if (QT->isUnsignedIntegerType()) { in fixType()
H A DScanfFormatString.cpp516 else if (PT->isUnsignedIntegerType()) in fixType()
H A DType.cpp1884 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
1894 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
1908 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
H A DASTContext.cpp5743 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
5789 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
5790 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
H A DExprConstant.cpp2664 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
2684 CharType->isUnsignedIntegerType()); in expandStringLiteral()
10878 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp188 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType()) in CanElideOverflowCheck()
696 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
2350 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2396 } else if (E->canOverflow() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2816 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
3327 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
3362 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
H A DCGExprComplex.cpp841 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DCanonicalType.h309 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
H A DType.h2258 bool isUnsignedIntegerType() const;
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp502 castTy->isUnsignedIntegerType()); in evalIntegralCast()
H A DRangeConstraintManager.cpp436 bool IsUnsigned = T->isUnsignedIntegerType(); in applyBitwiseConstraints()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCast.cpp1813 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1814 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
H A DSemaChecking.cpp743 !Arg2->getType()->isUnsignedIntegerType()) { in SemaBuiltinRWPipe()
777 !Call->getArg(1)->getType()->isUnsignedIntegerType()) { in SemaBuiltinReserveRWPipe()
8641 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
8725 if (!ArgType->isUnsignedIntegerType()) return; in CheckMaxUnsignedZero()
11066 if (Source->isUnsignedIntegerType()) { in CheckImplicitConversion()
11067 if (Target->isUnsignedIntegerType()) in CheckImplicitConversion()
H A DSemaExprCXX.cpp4615 return T->isUnsignedIntegerType(); in EvaluateUnaryTypeTrait()
H A DSemaInit.cpp1627 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
H A DSemaExpr.cpp1660 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
3367 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
H A DSemaDeclAttr.cpp5550 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || in handleAnyX86InterruptAttr()
H A DSemaOverload.cpp2125 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4844 return Node->isUnsignedIntegerType(); in AST_MATCHER()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp911 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()