Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGRTTI.cpp839 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildVMIClassTypeInfo()
933 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerTypeInfo()
970 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); in BuildPointerToMemberTypeInfo()
1016 Context.UnsignedIntTy, Context.LongTy, in EmitFundamentalRTTIDescriptors()
DCodeGenModule.cpp2240 llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); in GetAddrOfConstantCFString()
2365 FieldTypes[2] = Context.UnsignedIntTy; in GetAddrOfConstantString()
2408 llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); in GetAddrOfConstantString()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h121 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy; in getIntValue()
/external/clang/lib/Analysis/
DScanfFormatString.cpp260 return ArgType::PtrTo(Ctx.UnsignedIntTy); in getArgType()
DFormatString.cpp296 return T == C.UnsignedIntTy; in matchesType()
DPrintfFormatString.cpp305 case LengthModifier::None: return Ctx.UnsignedIntTy; in getArgType()
/external/clang/include/clang/AST/
DBuiltinTypes.def85 UNSIGNED_TYPE(UInt, UnsignedIntTy)
DASTContext.h748 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
/external/clang/lib/AST/
DASTContext.cpp833 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt); in InitBuiltinTypes()
3613 return UnsignedIntTy; in getUnsignedWCharType()
4209 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; in isPromotableBitField()
4240 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType()
4259 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; in getPromotedIntegerType()
4872 PointeeTy = UnsignedIntTy; in getLegacyIntegralTypeEncoding()
5757 FieldTypes[0] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
5761 FieldTypes[1] = Context->UnsignedIntTy; in CreateX86_64ABIBuiltinVaListDecl()
6106 case TargetInfo::UnsignedInt: return UnsignedIntTy; in getFromTargetType()
7256 return UnsignedIntTy; in getCorrespondingUnsignedType()
[all …]
DRecordLayoutBuilder.cpp1862 Context.UnsignedCharTy, Context.UnsignedShortTy, Context.UnsignedIntTy, in LayoutWideBitField()
/external/clang/lib/Rewrite/Frontend/
DRewriteModernObjC.cpp870 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in getIvarAccessString()
873 Context->UnsignedIntTy, SourceLocation()); in getIvarAccessString()
2779 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCArrayLiteralExpr()
2782 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCArrayLiteralExpr()
2848 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCArrayLiteralExpr()
2918 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCDictionaryLiteralExpr()
2921 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCDictionaryLiteralExpr()
3014 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCDictionaryLiteralExpr()
7798 static_cast<unsigned>(Context->getTypeSize(Context->UnsignedIntTy)); in RewriteObjCIvarRefExpr()
7801 Context->UnsignedIntTy, SourceLocation()); in RewriteObjCIvarRefExpr()
/external/clang/lib/Sema/
DSemaChecking.cpp339 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy; in getNeonEltType()
2764 ICE->getType() == S.Context.UnsignedIntTy) { in checkFormatExpr()
2812 .Case("UInt32", S.Context.UnsignedIntTy) in checkFormatExpr()
DSemaDecl.cpp11097 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, in getNextLargerIntegralType()
11657 BestType = Context.UnsignedIntTy; in ActOnEnumBody()
11661 ? Context.UnsignedIntTy : Context.IntTy; in ActOnEnumBody()
DSemaType.cpp834 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break; in ConvertDeclSpecToType()
DSemaOverload.cpp1806 Context.IntTy, Context.UnsignedIntTy, in IsIntegralPromotion()
6508 &ASTContext::UnsignedIntTy, in getArithmeticType()
DSemaDeclAttr.cpp3677 NewTy = S.Context.UnsignedIntTy; in handleModeAttr()
DTreeTransform.h8971 SemaRef.Context.UnsignedIntTy, SemaRef.Context.UnsignedLongTy, in RebuildArrayType()
DSemaExpr.cpp2916 Ty = Context.UnsignedIntTy; in ActOnNumericConstant()
/external/clang/lib/Serialization/
DASTReader.cpp4923 case PREDEF_TYPE_UINT_ID: T = Context.UnsignedIntTy; break; in GetType()