| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ConversionChecker.cpp | 200 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | PrintfFormatString.cpp | 865 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType() 894 } else if (QT->isUnsignedIntegerType()) { in fixType()
|
| H A D | ScanfFormatString.cpp | 520 else if (PT->isUnsignedIntegerType()) in fixType()
|
| H A D | Type.cpp | 2092 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type 2102 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType() 2121 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
|
| H A D | ExprConstant.cpp | 3003 EltTy->isUnsignedIntegerType()}; in handleVectorVectorBinOp() 3403 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter() 3426 CharType->isUnsignedIntegerType()); in expandStringLiteral() 10578 ResultTy->isUnsignedIntegerType()}; in handleVectorUnaryOperator() 15120 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
|
| H A D | ASTContext.cpp | 7185 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType() 7231 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder() 7232 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
|
| H A D | Expr.cpp | 199 if (!Semantic && FD->getType()->isUnsignedIntegerType() && in isKnownToHaveBooleanValue()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | CanonicalType.h | 309 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
|
| H A D | Type.h | 2488 bool isUnsignedIntegerType() const;
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 205 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType()) in CanElideOverflowCheck() 755 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul() 2565 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec() 2654 } else if (E->canOverflow() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec() 3256 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue() 3839 if (op.Ty->isUnsignedIntegerType() && in EmitAdd() 3989 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
|
| H A D | CGExprComplex.cpp | 925 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
|
| H A D | CGBuiltin.cpp | 3161 if (QT->isUnsignedIntegerType()) in EmitBuiltinExpr() 3176 if (QT->isUnsignedIntegerType()) in EmitBuiltinExpr()
|
| H A D | CGOpenMPRuntime.cpp | 12218 assert(IVLVal.getType()->isUnsignedIntegerType() && in emitLastprivateConditionalUpdate()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 600 castTy->isUnsignedIntegerType()); in evalIntegralCast()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 2043 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast() 2044 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
|
| H A D | SemaChecking.cpp | 1755 !Arg2->getType()->isUnsignedIntegerType()) { in SemaBuiltinRWPipe() 1789 !Call->getArg(1)->getType()->isUnsignedIntegerType()) { in SemaBuiltinReserveRWPipe() 2594 if (EltTy->isUnsignedIntegerType()) { in CheckBuiltinFunctionCall() 11257 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction() 11341 if (!ArgType->isUnsignedIntegerType()) return; in CheckMaxUnsignedZero() 14268 if (Source->isUnsignedIntegerType()) { in CheckImplicitConversion() 14269 if (Target->isUnsignedIntegerType()) in CheckImplicitConversion()
|
| H A D | SemaExpr.cpp | 888 E = (Ty->isUnsignedIntegerType()) in DefaultArgumentPromotion() 1975 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral() 3855 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant() 16909 PromoteType->isUnsignedIntegerType() != in BuildVAArgExpr() 16910 UnderlyingType->isUnsignedIntegerType()) { in BuildVAArgExpr() 16912 UnderlyingType->isUnsignedIntegerType() in BuildVAArgExpr()
|
| H A D | SemaExprCXX.cpp | 5095 return T->isUnsignedIntegerType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
|
| H A D | SemaInit.cpp | 1789 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
|
| H A D | SemaDeclAttr.cpp | 7453 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || in handleAnyX86InterruptAttr()
|
| H A D | SemaOverload.cpp | 2311 if (FromType->isUnsignedIntegerType() && *BitWidth <= ToSize) { in IsIntegralPromotion()
|
| /openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 6244 return Node->isUnsignedIntegerType(); in AST_MATCHER()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 2680 const bool is_unsigned = qt->isUnsignedIntegerType(); in ExtractIntFromFormValue()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 4845 return qual_type->isUnsignedIntegerType() ? lldb::eEncodingUint in GetEncoding() 5229 return qual_type->isUnsignedIntegerType() ? lldb::eFormatUnsigned in GetFormat()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CFG.cpp | 948 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()
|