Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp189 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DPrintfFormatString.cpp861 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
892 else if (QT->isUnsignedIntegerType()) { in fixType()
H A DScanfFormatString.cpp518 else if (PT->isUnsignedIntegerType()) in fixType()
H A DType.cpp2050 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
2060 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
2077 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
H A DASTContext.cpp6433 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
6479 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
6480 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
H A DExprConstant.cpp2984 EltTy->isUnsignedIntegerType()}; in handleVectorVectorBinOp()
3384 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
3407 CharType->isUnsignedIntegerType()); in expandStringLiteral()
14637 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
H A DExpr.cpp197 if (!Semantic && FD->getType()->isUnsignedIntegerType() && in isKnownToHaveBooleanValue()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DCanonicalType.h310 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
H A DType.h2351 bool isUnsignedIntegerType() const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp209 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType()) in CanElideOverflowCheck()
743 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
2475 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2564 } else if (E->canOverflow() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
3016 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
3592 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
3742 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
H A DCGExprComplex.cpp867 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
H A DCGOpenMPRuntime.cpp12432 assert(IVLVal.getType()->isUnsignedIntegerType() && in emitLastprivateConditionalUpdate()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp518 castTy->isUnsignedIntegerType()); in evalIntegralCast()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp2015 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
2016 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
H A DSemaChecking.cpp1181 !Arg2->getType()->isUnsignedIntegerType()) { in SemaBuiltinRWPipe()
1215 !Call->getArg(1)->getType()->isUnsignedIntegerType()) { in SemaBuiltinReserveRWPipe()
9657 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
9741 if (!ArgType->isUnsignedIntegerType()) return; in CheckMaxUnsignedZero()
12602 if (Source->isUnsignedIntegerType()) { in CheckImplicitConversion()
12603 if (Target->isUnsignedIntegerType()) in CheckImplicitConversion()
H A DSemaExpr.cpp830 E = (Ty->isUnsignedIntegerType()) in DefaultArgumentPromotion()
1907 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
3755 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
H A DSemaExprCXX.cpp4881 return T->isUnsignedIntegerType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
H A DSemaDeclAttr.cpp6667 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || in handleAnyX86InterruptAttr()
H A DSemaInit.cpp1775 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
H A DSemaOverload.cpp2203 if (FromType->isUnsignedIntegerType() && *BitWidth <= ToSize) { in IsIntegralPromotion()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6038 return Node->isUnsignedIntegerType(); in AST_MATCHER()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp940 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()