Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp200 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DPrintfFormatString.cpp865 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
894 } else if (QT->isUnsignedIntegerType()) { in fixType()
H A DScanfFormatString.cpp520 else if (PT->isUnsignedIntegerType()) in fixType()
H A DType.cpp2092 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 DExprConstant.cpp3003 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 DASTContext.cpp7185 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
7231 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
7232 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
H A DExpr.cpp199 if (!Semantic && FD->getType()->isUnsignedIntegerType() && in isKnownToHaveBooleanValue()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DCanonicalType.h309 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
H A DType.h2488 bool isUnsignedIntegerType() const;
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprScalar.cpp205 !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 DCGExprComplex.cpp925 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
H A DCGBuiltin.cpp3161 if (QT->isUnsignedIntegerType()) in EmitBuiltinExpr()
3176 if (QT->isUnsignedIntegerType()) in EmitBuiltinExpr()
H A DCGOpenMPRuntime.cpp12218 assert(IVLVal.getType()->isUnsignedIntegerType() && in emitLastprivateConditionalUpdate()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp600 castTy->isUnsignedIntegerType()); in evalIntegralCast()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaCast.cpp2043 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
2044 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
H A DSemaChecking.cpp1755 !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 DSemaExpr.cpp888 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 DSemaExprCXX.cpp5095 return T->isUnsignedIntegerType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
H A DSemaInit.cpp1789 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
H A DSemaDeclAttr.cpp7453 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || in handleAnyX86InterruptAttr()
H A DSemaOverload.cpp2311 if (FromType->isUnsignedIntegerType() && *BitWidth <= ToSize) { in IsIntegralPromotion()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6244 return Node->isUnsignedIntegerType(); in AST_MATCHER()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2680 const bool is_unsigned = qt->isUnsignedIntegerType(); in ExtractIntFromFormValue()
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4845 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 DCFG.cpp948 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()