| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ConversionChecker.cpp | 164 if (DestType->isSignedIntegerType()) in isLossOfPrecision() 174 if (SubType->isSignedIntegerType()) in isLossOfPrecision() 196 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
|
| H A D | MIGChecker.cpp | 168 .getCanonicalType()->isSignedIntegerType()) in isInMIGCall()
|
| H A D | BitwiseShiftChecker.cpp | 208 if (!operandExpr(Side)->getType()->isSignedIntegerType()) in checkOperandNegative()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SVals.cpp | 157 NestedType->isSignedIntegerType()); in VisitLocAsInteger()
|
| H A D | ExprEngineC.cpp | 854 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType()); in VisitOffsetOfExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGAtomic.cpp | 657 : (E->getValueType()->isSignedIntegerType() in EmitAtomicOp() 673 : (E->getValueType()->isSignedIntegerType() in EmitAtomicOp() 735 E->getValueType()->isSignedIntegerType(), in EmitAtomicOp() 1349 LibCallName = E->getValueType()->isSignedIntegerType() in EmitAtomicExpr() 1364 LibCallName = E->getValueType()->isSignedIntegerType() in EmitAtomicExpr() 1429 E->getValueType()->isSignedIntegerType(), in EmitAtomicExpr()
|
| H A D | CGHLSLRuntime.cpp | 244 if (ElTy->isSignedIntegerType()) { in calculateElementType()
|
| H A D | CodeGenFunction.cpp | 600 HintQTy->isSignedIntegerType() || in EmitKernelMetadata() 601 (HintEltQTy && HintEltQTy->getElementType()->isSignedIntegerType()); in EmitKernelMetadata() 2370 SEType->isSignedIntegerType() in EmitVariablyModifiedType()
|
| H A D | CGException.cpp | 2082 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction()
|
| H A D | CGExprConstant.cpp | 1153 llvm::APInt A = FromType->isSignedIntegerType() in VisitCastExpr()
|
| H A D | CGBuiltin.cpp | 760 bool Signed = Type->isSignedIntegerType(); in getIntegerWidthAndSignedness() 991 bool IsSigned = CountedByFD->getType()->isSignedIntegerType(); in emitFlexibleArrayMemberSize() 1005 bool IdxSigned = Idx->getType()->isSignedIntegerType(); in emitFlexibleArrayMemberSize() 3708 bool IsSigned = Ty->isSignedIntegerType(); in EmitBuiltinExpr() 3726 Result = Builder.CreateBinaryIntrinsic(Ty->isSignedIntegerType() in EmitBuiltinExpr() 3742 Result = Builder.CreateBinaryIntrinsic(Ty->isSignedIntegerType() in EmitBuiltinExpr() 3755 if (QT->isSignedIntegerType()) in EmitBuiltinExpr() 3770 if (QT->isSignedIntegerType()) in EmitBuiltinExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | PrintfFormatString.cpp | 861 if (QT->isSignedIntegerType()) in fixType() 893 } else if (QT->isSignedIntegerType()) { in fixType()
|
| H A D | ScanfFormatString.cpp | 518 else if (PT->isSignedIntegerType()) in fixType()
|
| H A D | Type.cpp | 2083 bool Type::isSignedIntegerType() const { in isSignedIntegerType() function in Type 2093 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); in isSignedIntegerType() 2112 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); in isSignedIntegerOrEnumerationType()
|
| H A D | JSONNodeDumper.cpp | 1571 /*Radix=*/10, IL->getType()->isSignedIntegerType()); in VisitIntegerLiteral()
|
| H A D | TextNodeDumper.cpp | 1214 bool isSigned = Node->getType()->isSignedIntegerType(); in VisitIntegerLiteral()
|
| H A D | StmtPrinter.cpp | 1285 bool isSigned = Node->getType()->isSignedIntegerType(); in VisitIntegerLiteral()
|
| H A D | ItaniumMangle.cpp | 5520 if (E->getType()->isSignedIntegerType()) in mangleExpression() 5542 if (IE->getSubExpr()->getType()->isSignedIntegerType()) in mangleExpression()
|
| H A D | ASTContext.cpp | 7142 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; in isPromotableBitField() 7180 (FromSize == ToSize && FromIsSigned == PT->isSignedIntegerType())) in getPromotedIntegerType() 7188 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType() 13411 getIntWidth(Ty), Ty->isSignedIntegerType()); in getFixedPointSemantics()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | Mips.cpp | 363 Ty->isSignedIntegerType()); in EmitVAArg()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CanonicalType.h | 308 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isSignedIntegerType)
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 1019 if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() && in rewriteToNumericBoxedExpression()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 2074 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast() 2075 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
|
| H A D | SemaChecking.cpp | 442 if (Ty->isBitIntType() && Ty->isSignedIntegerType() && in SemaBuiltinOverflow() 14565 (!E->getType()->isSignedIntegerType() || in isKnownToHaveUnsignedValue() 14566 !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType()); in isKnownToHaveUnsignedValue() 15042 bool SignedBitfield = BitfieldType->isSignedIntegerType(); in AnalyzeBitFieldAssignment() 15117 TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType()); in AnalyzeBitFieldAssignment() 15606 else if (E->getType()->isSignedIntegerType()) in DiagnoseIntInBoolContext() 16021 if (Target->isSignedIntegerType()) in CheckImplicitConversion() 16029 Source->isSignedIntegerType()) { in CheckImplicitConversion() 16063 Source->isSignedIntegerType() == Target->isSignedIntegerType()) { in CheckImplicitConversion()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 6507 return Node->isSignedIntegerType(); in AST_MATCHER()
|