Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp244 AST.getFunctionType(ReturnTy, {AST.UnsignedIntTy}, ExtInfo); in addArraySubscriptOperator()
257 &II, AST.UnsignedIntTy, in addArraySubscriptOperator()
258 AST.getTrivialTypeSourceInfo(AST.UnsignedIntTy, SourceLocation()), in addArraySubscriptOperator()
275 AST.UnsignedIntTy, VK_PRValue); in addArraySubscriptOperator()
H A DSemaBPF.cpp169 TheCall->setType(Context.UnsignedIntTy); in CheckBPFBuiltinFunctionCall()
H A DSemaOpenCL.cpp465 << Call->getDirectCallee() << getASTContext().UnsignedIntTy in checkBuiltinRWPipe()
494 << Call->getDirectCallee() << getASTContext().UnsignedIntTy in checkBuiltinReserveRWPipe()
H A DSemaHLSL.cpp1000 return CheckArgsTypesAreCorrect(S, TheCall, S->Context.UnsignedIntTy, in CheckUnsignedIntRepresentation()
H A DSemaARM.cpp362 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy; in getNeonEltType()
H A DOpenCLBuiltins.td349 def UInt : Type<"uint", QualType<"Context.UnsignedIntTy">>;
408 …micUInt : Type<"atomic_uint", QualType<"Context.getAtomicType(Context.UnsignedIntTy)">>;
H A DSema.cpp402 Context.getAtomicType(Context.UnsignedIntTy)); in Initialize()
H A DSemaType.cpp1030 Result = Context.UnsignedIntTy; in ConvertDeclSpecToType()
9685 &S.Context.UnsignedIntTy, &S.Context.UnsignedLongTy, in ChangeIntegralSignedness()
H A DSemaDecl.cpp19358 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, in getNextLargerIntegralType()
19967 BestType = Context.UnsignedIntTy; in ActOnEnumBody()
19971 ? Context.UnsignedIntTy : Context.IntTy; in ActOnEnumBody()
H A DSemaTemplateDeduction.cpp2141 S.Context.UnsignedIntTy, true, in DeduceTemplateArgumentsByTypeMatch()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp299 return ast_ctx.UnsignedIntTy; in BuildType()
325 return ast_ctx.UnsignedIntTy; // FIXME: the spec is fairly vague here. in BuildType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp451 if (T == C.UnsignedIntTy) in matchesType()
481 if (T == C.IntTy || T == C.UnsignedIntTy) in matchesType()
492 if (T == C.UnsignedIntTy) in matchesType()
H A DPrintfFormatString.cpp567 return Ctx.UnsignedIntTy; in getScalarArgType()
569 return ArgType(Ctx.UnsignedIntTy, "unsigned __int32"); in getScalarArgType()
585 : ArgType(Ctx.UnsignedIntTy, "unsigned __int32"); in getScalarArgType()
H A DScanfFormatString.cpp280 return ArgType::PtrTo(Ctx.UnsignedIntTy); in getArgType()
H A DRecordLayoutBuilder.cpp1486 Context.UnsignedCharTy, Context.UnsignedShortTy, Context.UnsignedIntTy, in LayoutWideBitField()
1629 if (StorageUnitSize < Context.getTypeSize(Context.UnsignedIntTy)) { in LayoutBitField()
1632 StorageUnitSize = Context.getTypeSize(Context.UnsignedIntTy); in LayoutBitField()
1633 } else if (StorageUnitSize > Context.getTypeSize(Context.UnsignedIntTy) && in LayoutBitField()
H A DASTContext.cpp1249 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt); in InitBuiltinTypes()
6386 return UnsignedIntTy; in getUnsignedWCharType()
7598 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; in isPromotableBitField()
7631 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType()
7649 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; in getPromotedIntegerType()
8394 PointeeTy = UnsignedIntTy; in getLegacyIntegralTypeEncoding()
9348 FieldTypes[0] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
9352 FieldTypes[1] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
9793 case TargetInfo::UnsignedInt: return UnsignedIntTy; in getFromTargetType()
11527 return UnsignedIntTy; in getCorrespondingUnsignedType()
[all …]
H A DExpr.cpp2326 return APValue(Ctx.MakeIntValue(PLoc.getLine(), Ctx.UnsignedIntTy)); in EvaluateInContext()
2328 return APValue(Ctx.MakeIntValue(PLoc.getColumn(), Ctx.UnsignedIntTy)); in EvaluateInContext()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h190 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy; in getIntValue()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp1664 const QualType UnsignedIntTy = ACtx.UnsignedIntTy; in initFunctionSummaries() local
1671 getPointerTy(UnsignedIntTy); // unsigned int * in initFunctionSummaries()
1689 BVF.getMaxValue(UnsignedIntTy).getLimitedValue(); in initFunctionSummaries()
2577 "sleep", Signature(ArgTypes{UnsignedIntTy}, RetType{UnsignedIntTy}), in initFunctionSummaries()
2596 "alarm", Signature(ArgTypes{UnsignedIntTy}, RetType{UnsignedIntTy}), in initFunctionSummaries()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def87 UNSIGNED_TYPE(UInt, UnsignedIntTy)
H A DASTContext.h1128 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
/freebsd/contrib/llvm-project/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()
7512 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCIvarRefExpr()
7515 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCIvarRefExpr()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp759 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForEncodingAndBitSize()
760 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForEncodingAndBitSize()
906 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
907 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1040 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1041 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1051 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1052 return GetType(ast.UnsignedIntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
2030 return ast->UnsignedIntTy.getAsOpaquePtr(); in GetOpaqueCompilerType()
2360 if (bit_size == ast.getTypeSize(ast.UnsignedIntTy)) in GetIntTypeFromBitSize()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp4368 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildVMIClassTypeInfo()
4489 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerTypeInfo()
4516 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerToMemberTypeInfo()
4546 getContext().UnsignedIntTy, getContext().LongTy, in EmitFundamentalRTTIDescriptors()
H A DCodeGenFunction.h1650 CreateIRTemp(getContext().UnsignedIntTy, "mcdc.addr");

12