Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp243 AST.getFunctionType(ReturnTy, {AST.UnsignedIntTy}, ExtInfo); in addArraySubscriptOperator()
256 &II, AST.UnsignedIntTy, in addArraySubscriptOperator()
257 AST.getTrivialTypeSourceInfo(AST.UnsignedIntTy, SourceLocation()), in addArraySubscriptOperator()
275 AST.UnsignedIntTy, VK_PRValue); in addArraySubscriptOperator()
H A DOpenCLBuiltins.td349 def UInt : Type<"uint", QualType<"Context.UnsignedIntTy">>;
408 …micUInt : Type<"atomic_uint", QualType<"Context.getAtomicType(Context.UnsignedIntTy)">>;
H A DSema.cpp356 Context.getAtomicType(Context.UnsignedIntTy)); in Initialize()
H A DSemaChecking.cpp1757 << Call->getDirectCallee() << S.Context.UnsignedIntTy in SemaBuiltinRWPipe()
1791 << Call->getDirectCallee() << S.Context.UnsignedIntTy in SemaBuiltinReserveRWPipe()
2820 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy; in getNeonEltType()
3491 TheCall->setType(Context.UnsignedIntTy); in CheckBPFBuiltinFunctionCall()
10252 .Case("UInt32", Context.UnsignedIntTy) in shouldNotPrintDirectly()
10382 ICE->getType() == S.Context.UnsignedIntTy) { in checkFormatExpr()
H A DSemaType.cpp1415 Result = Context.UnsignedIntTy; in ConvertDeclSpecToType()
9462 &S.Context.UnsignedIntTy, &S.Context.UnsignedLongTy, in ChangeIntegralSignedness()
H A DSemaTemplateDeduction.cpp1966 S.Context.UnsignedIntTy, true, in DeduceTemplateArgumentsByTypeMatch()
H A DSemaDecl.cpp19075 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, in getNextLargerIntegralType()
19680 BestType = Context.UnsignedIntTy; in ActOnEnumBody()
19684 ? Context.UnsignedIntTy : Context.IntTy; in ActOnEnumBody()
H A DSemaOverload.cpp2263 Context.IntTy, Context.UnsignedIntTy, in IsIntegralPromotion()
8442 ArithmeticTypes.push_back(S.Context.UnsignedIntTy); in InitArithmeticTypes()
H A DSemaExpr.cpp4071 Ty = Context.UnsignedIntTy; in ActOnNumericConstant()
17033 ResultTy = Context.UnsignedIntTy; in ActOnSourceLocExpr()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp297 return ast_ctx.UnsignedIntTy; in BuildType()
323 return ast_ctx.UnsignedIntTy; // FIXME: the spec is fairly vague here. in BuildType()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DPrintfFormatString.cpp551 return Ctx.UnsignedIntTy; in getScalarArgType()
553 return ArgType(Ctx.UnsignedIntTy, "unsigned __int32"); in getScalarArgType()
569 : ArgType(Ctx.UnsignedIntTy, "unsigned __int32"); in getScalarArgType()
H A DScanfFormatString.cpp280 return ArgType::PtrTo(Ctx.UnsignedIntTy); in getArgType()
H A DRecordLayoutBuilder.cpp1479 Context.UnsignedCharTy, Context.UnsignedShortTy, Context.UnsignedIntTy, in LayoutWideBitField()
1622 if (StorageUnitSize < Context.getTypeSize(Context.UnsignedIntTy)) { in LayoutBitField()
1625 StorageUnitSize = Context.getTypeSize(Context.UnsignedIntTy); in LayoutBitField()
1626 } else if (StorageUnitSize > Context.getTypeSize(Context.UnsignedIntTy) && in LayoutBitField()
H A DFormatString.cpp429 if (T == C.UnsignedIntTy) in matchesType()
H A DASTContext.cpp1285 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt); in InitBuiltinTypes()
5930 return UnsignedIntTy; in getUnsignedWCharType()
7135 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; in isPromotableBitField()
7168 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType()
7186 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; in getPromotedIntegerType()
7927 PointeeTy = UnsignedIntTy; in getLegacyIntegralTypeEncoding()
8879 FieldTypes[0] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
8883 FieldTypes[1] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
9323 case TargetInfo::UnsignedInt: return UnsignedIntTy; in getFromTargetType()
10941 return UnsignedIntTy; in getCorrespondingUnsignedType()
[all …]
H A DExpr.cpp2298 llvm::APSInt IntVal(Ctx.getIntWidth(Ctx.UnsignedIntTy), in EvaluateInContext()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h190 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy; in getIntValue()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp1266 const QualType UnsignedIntTy = ACtx.UnsignedIntTy; in initFunctionSummaries() local
1273 getPointerTy(UnsignedIntTy); // unsigned int * in initFunctionSummaries()
1291 BVF.getMaxValue(UnsignedIntTy).getLimitedValue(); in initFunctionSummaries()
2004 "sleep", Signature(ArgTypes{UnsignedIntTy}, RetType{UnsignedIntTy}), in initFunctionSummaries()
2022 "alarm", Signature(ArgTypes{UnsignedIntTy}, RetType{UnsignedIntTy}), in initFunctionSummaries()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DBuiltinTypes.def87 UNSIGNED_TYPE(UInt, UnsignedIntTy)
H A DASTContext.h1087 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp872 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in getIvarAccessString()
875 Context->UnsignedIntTy, SourceLocation()); in getIvarAccessString()
2729 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCArrayLiteralExpr()
2732 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCArrayLiteralExpr()
2787 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCArrayLiteralExpr()
2852 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCDictionaryLiteralExpr()
2855 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCDictionaryLiteralExpr()
2932 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCDictionaryLiteralExpr()
7515 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCIvarRefExpr()
7518 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCIvarRefExpr()
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp812 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForEncodingAndBitSize()
813 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForEncodingAndBitSize()
964 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
965 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1098 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1099 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1109 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1110 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
2071 return ast->UnsignedIntTy.getAsOpaquePtr(); in GetOpaqueCompilerType()
2400 if (bit_size == ast.getTypeSize(ast.UnsignedIntTy)) in GetIntTypeFromBitSize()
[all …]
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp4019 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildVMIClassTypeInfo()
4140 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerTypeInfo()
4167 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerToMemberTypeInfo()
4197 getContext().UnsignedIntTy, getContext().LongTy, in EmitFundamentalRTTIDescriptors()
H A DCGBuiltin.cpp3699 getContext().UnsignedIntTy); in EmitBuiltinExpr()
3709 getContext().UnsignedIntTy); in EmitBuiltinExpr()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp6953 T = Context.UnsignedIntTy; in GetType()

12