Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenCL.cpp463 !Arg2->getType()->isUnsignedIntegerType()) { in checkBuiltinRWPipe()
492 !Call->getArg(1)->getType()->isUnsignedIntegerType()) { in checkBuiltinReserveRWPipe()
H A DSemaX86.cpp935 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || in handleAnyInterruptAttr()
H A DSemaCast.cpp2083 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
2084 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
H A DSemaChecking.cpp2009 if (!ArgTy->isUnsignedIntegerType()) { in BuiltinPopcountg()
2033 if (!Arg0Ty->isUnsignedIntegerType()) { in BuiltinCountZeroBitsGeneric()
2652 if (EltTy->isUnsignedIntegerType()) { in CheckBuiltinFunctionCall()
8236 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
8320 if (!ArgType->isUnsignedIntegerType()) return; in CheckMaxUnsignedZero()
11130 if (Source->isUnsignedIntegerType()) { in CheckImplicitConversion()
11131 if (Target->isUnsignedIntegerType()) in CheckImplicitConversion()
H A DSemaExpr.cpp893 E = (Ty->isUnsignedIntegerType()) in DefaultArgumentPromotion()
2160 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
3758 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
16417 PromoteType->isUnsignedIntegerType() != in BuildVAArgExpr()
16418 UnderlyingType->isUnsignedIntegerType()) { in BuildVAArgExpr()
16420 UnderlyingType->isUnsignedIntegerType() in BuildVAArgExpr()
H A DSemaInit.cpp1915 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
9582 bool isUnsigned = CharType->isUnsignedIntegerType(); in CheckC23ConstexprInitStringLiteral()
H A DSemaExprCXX.cpp5348 return T->isUnsignedIntegerType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp932 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
961 } else if (QT->isUnsignedIntegerType()) { in fixType()
H A DScanfFormatString.cpp518 else if (PT->isUnsignedIntegerType()) in fixType()
H A DType.cpp2196 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
2206 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
2225 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
H A DExprConstant.cpp3072 EltTy->isUnsignedIntegerType()}; in handleVectorVectorBinOp()
3482 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
3505 CharType->isUnsignedIntegerType()); in expandStringLiteral()
10946 ResultTy->isUnsignedIntegerType()}; in handleVectorUnaryOperator()
11317 APSInt Value(Info.Ctx.getTypeSize(DestTy), DestTy->isUnsignedIntegerType()); in VisitCXXParenListOrInitListExpr()
15886 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
H A DASTContext.cpp7648 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
7694 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
7695 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
H A DExpr.cpp198 if (!Semantic && FD->getType()->isUnsignedIntegerType() && in isKnownToHaveBooleanValue()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp256 } else if (ElTy->isUnsignedIntegerType()) { in calculateElementType()
H A DCGExprScalar.cpp219 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType()) in CanElideOverflowCheck()
774 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
2821 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2941 } else if (E->canOverflow() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
3549 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
4176 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
4332 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
H A DCGExprComplex.cpp1103 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
H A DCGExprConstant.cpp1348 DestTy->isUnsignedIntegerType()); in EmitArrayInitialization()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h309 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
H A DType.h2852 bool isUnsignedIntegerType() const;
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp280 return T->isUnsignedIntegerType(); in isUnsigned()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1668 } else if (!Expr->getType()->isUnsignedIntegerType()) in isNonNegativeIntegerExpr()
H A DCFG.cpp945 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6517 return Node->isUnsignedIntegerType(); in AST_MATCHER()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2749 const bool is_unsigned = qt->isUnsignedIntegerType(); in ExtractIntFromFormValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4844 return qual_type->isUnsignedIntegerType() ? lldb::eEncodingUint in GetEncoding()
5185 return qual_type->isUnsignedIntegerType() ? lldb::eFormatUnsigned in GetFormat()

12