Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDPrintfFormatString.cpp676 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
707 else if (QT->isUnsignedIntegerType()) { in fixType()
HDScanfFormatString.cpp504 else if (PT->isUnsignedIntegerType()) in fixType()
HDCFG.cpp591 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDCanonicalType.h294 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
HDType.h1875 bool isUnsignedIntegerType() const;
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGExprScalar.cpp465 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
1689 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
1737 } else if (CanOverflow && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2146 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
2617 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
2648 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
HDCGExprComplex.cpp785 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDType.cpp1723 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
1733 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
1747 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
HDASTContext.cpp4690 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
4736 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
4737 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
HDExprConstant.cpp2046 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
2066 CharType->isUnsignedIntegerType()); in expandStringLiteral()
8470 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaCast.cpp1698 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1699 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
HDSemaExprCXX.cpp3738 return T->isUnsignedIntegerType(); in EvaluateUnaryTypeTrait()
HDSemaInit.cpp1445 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
HDSemaExpr.cpp1622 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
3302 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
HDSemaChecking.cpp4910 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
HDSemaOverload.cpp1832 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()