Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp196 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
H A DBitwiseShiftChecker.cpp244 if (LHSTy->isUnsignedIntegerType()) in checkLeftShiftOverflow()
H A DArrayBoundCheckerV2.cpp189 if (T->isUnsignedIntegerType() && ConcreteThreshold->getValue().isNegative()) { in compareValueToThreshold()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp867 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
896 } else if (QT->isUnsignedIntegerType()) { in fixType()
H A DScanfFormatString.cpp520 else if (PT->isUnsignedIntegerType()) in fixType()
H A DType.cpp2133 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
2143 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
2162 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
H A DExprConstant.cpp3044 EltTy->isUnsignedIntegerType()}; in handleVectorVectorBinOp()
3454 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
3477 CharType->isUnsignedIntegerType()); in expandStringLiteral()
10853 ResultTy->isUnsignedIntegerType()}; in handleVectorUnaryOperator()
15474 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
H A DASTContext.cpp7192 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
7238 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
7239 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
H A DExpr.cpp199 if (!Semantic && FD->getType()->isUnsignedIntegerType() && in isKnownToHaveBooleanValue()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp253 } else if (ElTy->isUnsignedIntegerType()) { in calculateElementType()
H A DCGExprScalar.cpp205 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType()) in CanElideOverflowCheck()
755 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
2581 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2670 } else if (E->canOverflow() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
3275 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
3888 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
4042 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
H A DCGExprComplex.cpp1036 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h309 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
H A DType.h2599 bool isUnsignedIntegerType() const;
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp607 castTy->isUnsignedIntegerType()); in evalIntegralCast()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp2074 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
2075 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
H A DSemaChecking.cpp1837 !Arg2->getType()->isUnsignedIntegerType()) { in SemaBuiltinRWPipe()
1871 !Call->getArg(1)->getType()->isUnsignedIntegerType()) { in SemaBuiltinReserveRWPipe()
2705 if (EltTy->isUnsignedIntegerType()) { in CheckBuiltinFunctionCall()
12994 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
13078 if (!ArgType->isUnsignedIntegerType()) return; in CheckMaxUnsignedZero()
16017 if (Source->isUnsignedIntegerType()) { in CheckImplicitConversion()
16018 if (Target->isUnsignedIntegerType()) in CheckImplicitConversion()
H A DSemaExpr.cpp903 E = (Ty->isUnsignedIntegerType()) in DefaultArgumentPromotion()
2173 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
4032 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
17427 PromoteType->isUnsignedIntegerType() != in BuildVAArgExpr()
17428 UnderlyingType->isUnsignedIntegerType()) { in BuildVAArgExpr()
17430 UnderlyingType->isUnsignedIntegerType() in BuildVAArgExpr()
H A DSemaExprCXX.cpp5177 return T->isUnsignedIntegerType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
H A DSemaInit.cpp1835 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1389 } else if (!Expr->getType()->isUnsignedIntegerType()) in isNonNegativeIntegerExpr()
H A DCFG.cpp945 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6493 return Node->isUnsignedIntegerType(); in AST_MATCHER()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2819 const bool is_unsigned = qt->isUnsignedIntegerType(); in ExtractIntFromFormValue()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4785 return qual_type->isUnsignedIntegerType() ? lldb::eEncodingUint in GetEncoding()
5112 return qual_type->isUnsignedIntegerType() ? lldb::eFormatUnsigned in GetFormat()

12