Home
last modified time | relevance | path

Searched refs:UnsignedIntTy (Results 1 – 23 of 23) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp1054 const QualType UnsignedIntTy = ACtx.UnsignedIntTy; in initFunctionSummaries() local
1061 getPointerTy(UnsignedIntTy); // unsigned int * in initFunctionSummaries()
1079 BVF.getMaxValue(UnsignedIntTy).getLimitedValue(); in initFunctionSummaries()
1560 "sleep", Signature(ArgTypes{UnsignedIntTy}, RetType{UnsignedIntTy}), in initFunctionSummaries()
1577 "alarm", Signature(ArgTypes{UnsignedIntTy}, RetType{UnsignedIntTy}), in initFunctionSummaries()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DPrintfFormatString.cpp548 return Ctx.UnsignedIntTy; in getScalarArgType()
550 return ArgType(Ctx.UnsignedIntTy, "unsigned __int32"); in getScalarArgType()
566 : ArgType(Ctx.UnsignedIntTy, "unsigned __int32"); in getScalarArgType()
H A DScanfFormatString.cpp278 return ArgType::PtrTo(Ctx.UnsignedIntTy); in getArgType()
H A DRecordLayoutBuilder.cpp1477 Context.UnsignedCharTy, Context.UnsignedShortTy, Context.UnsignedIntTy, in LayoutWideBitField()
1620 if (StorageUnitSize < Context.getTypeSize(Context.UnsignedIntTy)) { in LayoutBitField()
1623 StorageUnitSize = Context.getTypeSize(Context.UnsignedIntTy); in LayoutBitField()
1624 } else if (StorageUnitSize > Context.getTypeSize(Context.UnsignedIntTy) && in LayoutBitField()
H A DFormatString.cpp400 return T == C.UnsignedIntTy ? Match : NoMatch; in matchesType()
H A DASTContext.cpp1299 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt); in InitBuiltinTypes()
5660 return UnsignedIntTy; in getUnsignedWCharType()
6382 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; in isPromotableBitField()
6415 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType()
6434 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; in getPromotedIntegerType()
7175 PointeeTy = UnsignedIntTy; in getLegacyIntegralTypeEncoding()
8123 FieldTypes[0] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
8127 FieldTypes[1] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
8561 case TargetInfo::UnsignedInt: return UnsignedIntTy; in getFromTargetType()
10126 return UnsignedIntTy; in getCorrespondingUnsignedType()
[all …]
H A DExpr.cpp2112 return Ctx.UnsignedIntTy; in getDecayedSourceLocExprType()
2177 llvm::APSInt IntVal(Ctx.getIntWidth(Ctx.UnsignedIntTy), in EvaluateInContext()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h177 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy; in getIntValue()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DBuiltinTypes.def87 UNSIGNED_TYPE(UInt, UnsignedIntTy)
H A DASTContext.h1011 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp871 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in getIvarAccessString()
874 Context->UnsignedIntTy, SourceLocation()); in getIvarAccessString()
2728 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCArrayLiteralExpr()
2731 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCArrayLiteralExpr()
2786 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCArrayLiteralExpr()
2851 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCDictionaryLiteralExpr()
2854 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCDictionaryLiteralExpr()
2931 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCDictionaryLiteralExpr()
7526 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCIvarRefExpr()
7529 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCIvarRefExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3987 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildVMIClassTypeInfo()
4107 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerTypeInfo()
4134 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerToMemberTypeInfo()
4164 getContext().UnsignedIntTy, getContext().LongTy, in EmitFundamentalRTTIDescriptors()
H A DCGBuiltin.cpp1998 Types[Context.UnsignedIntTy] = "%u"; in dumpRecord()
3504 getContext().UnsignedIntTy); in EmitBuiltinExpr()
3514 getContext().UnsignedIntTy); in EmitBuiltinExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSema.cpp310 Context.getAtomicType(Context.UnsignedIntTy)); in Initialize()
H A DOpenCLBuiltins.td298 def UInt : Type<"uint", QualType<"Context.UnsignedIntTy">>;
344 …micUInt : Type<"atomic_uint", QualType<"Context.getAtomicType(Context.UnsignedIntTy)">>;
H A DSemaChecking.cpp1183 << Call->getDirectCallee() << S.Context.UnsignedIntTy in SemaBuiltinRWPipe()
1217 << Call->getDirectCallee() << S.Context.UnsignedIntTy in SemaBuiltinReserveRWPipe()
2057 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy; in getNeonEltType()
2739 TheCall->setType(Context.UnsignedIntTy); in CheckBPFBuiltinFunctionCall()
8697 .Case("UInt32", Context.UnsignedIntTy) in shouldNotPrintDirectly()
8817 ICE->getType() == S.Context.UnsignedIntTy) { in checkFormatExpr()
H A DSemaTemplateDeduction.cpp2035 S.Context.UnsignedIntTy, true, in DeduceTemplateArgumentsByTypeMatch()
H A DSemaDecl.cpp17659 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, in getNextLargerIntegralType()
18260 BestType = Context.UnsignedIntTy; in ActOnEnumBody()
18264 ? Context.UnsignedIntTy : Context.IntTy; in ActOnEnumBody()
H A DSemaOverload.cpp2155 Context.IntTy, Context.UnsignedIntTy, in IsIntegralPromotion()
8191 ArithmeticTypes.push_back(S.Context.UnsignedIntTy); in InitArithmeticTypes()
H A DSemaType.cpp1413 Result = Context.UnsignedIntTy; in ConvertDeclSpecToType()
H A DTreeTransform.h14178 SemaRef.Context.UnsignedIntTy, SemaRef.Context.UnsignedLongTy, in RebuildArrayType()
H A DSemaExpr.cpp3937 Ty = Context.UnsignedIntTy; in ActOnNumericConstant()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp6840 T = Context.UnsignedIntTy; in GetType()