Searched refs:getSizeType (Results 1 - 25 of 35) sorted by relevance

12

/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp52 SizeTy = Types.ConvertType(Ctx.getSizeType());
H A DCGExprAgg.cpp369 } else if (Ctx.hasSameType(Field->getType(), Ctx.getSizeType())) {
1481 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
1492 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
H A DCGAtomic.cpp785 getContext().getSizeType());
1136 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
1347 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
1434 getContext().getSizeType());
H A DCGClass.cpp498 CGF.ConvertType(CGF.getContext().getSizeType()));
624 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
H A DCGObjC.cpp97 llvm::APInt APNumElements(Context.getTypeSize(Context.getSizeType()),
527 args.add(RValue::get(CGF.CGM.getSize(size)), Context.getSizeType());
997 args.add(RValue::get(size), CGF.getContext().getSizeType());
H A DCGExprCXX.cpp1250 QualType sizeType = getContext().getSizeType();
H A DItaniumCXXABI.cpp948 llvm::Type *SizeTy = CGF.ConvertType(getContext().getSizeType());
1573 QualType SizeTy = Ctx.getSizeType();
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVLASizeChecker.cpp155 QualType SizeTy = Ctx.getSizeType();
H A DCStringChecker.cpp561 QualType sizeTy = svalBuilder.getContext().getSizeType();
674 QualType sizeTy = svalBuilder.getContext().getSizeType();
746 QualType sizeTy = svalBuilder.getContext().getSizeType();
1361 QualType sizeTy = svalBuilder.getContext().getSizeType();
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp644 DefineTypeSize("__SIZE_MAX__", TI.getSizeType(), TI, Builder);
662 TI.getTypeWidth(TI.getSizeType()), TI, Builder);
685 DefineType("__SIZE_TYPE__", TI.getSizeType(), Builder);
686 DefineFmt("__SIZE", TI.getSizeType(), TI, Builder);
687 DefineTypeWidth("__SIZE_WIDTH__", TI.getSizeType(), TI, Builder);
/external/clang/lib/Sema/
H A DSema.cpp202 addImplicitTypedef("size_t", Context.getSizeType());
234 Context.getAtomicType(Context.getSizeType()));
770 llvm::APInt One(Context.getTypeSize(Context.getSizeType()), true);
H A DSemaExprCXX.cpp1200 = CheckConvertedConstantExpression(NumElts, Context.getSizeType(), Value,
1326 Context.getSizeType(),
1369 ConvertedSize = PerformImplicitConversion(ArraySize, Context.getSizeType(),
1574 llvm::APInt(Context.getTypeSize(Context.getSizeType()), NumElements),
1710 S.Context.getSizeType());
1735 Context.getSizeType(),
2107 QualType SizeT = Context.getSizeType();
2125 Context.VoidTy, VoidPtr, Context.getSizeType());
2128 Context.VoidTy, VoidPtr, Context.getSizeType());
4154 RParen, Context.getSizeType());
[all...]
H A DSemaTemplateVariadic.cpp870 return new (Context) SizeOfPackExpr(Context.getSizeType(), OpLoc,
H A DSemaInit.cpp928 SemaRef.Context.getTypeSize(SemaRef.Context.getSizeType()),
3157 E.withConst(), llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
6525 llvm::APInt(S.Context.getTypeSize(S.Context.getSizeType()),
H A DSemaExpr.cpp1573 QualType SizeType = Context.getSizeType();
3769 ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd());
3809 ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd());
11036 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,
12583 QualType SizeType = S.Context.getSizeType();
12931 auto SizeType = Context.getSizeType();
H A DSemaDeclCXX.cpp3532 QualType SizeType = SemaRef.Context.getSizeType();
9643 QualType SizeType = S.Context.getSizeType();
9841 QualType SizeType = S.Context.getSizeType();
11515 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
11803 if (Context.hasSameType(T, Context.getSizeType()) &&
/external/clang/include/clang/Basic/
H A DTargetInfo.h207 IntType getSizeType() const { return SizeType; } function in class:clang::TargetInfo
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h152 inline static SizeType getSizeType(unsigned nbytes);
168 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) { function in class:clang::threadSafety::ValueType
247 return ValueType(BT_String, getSizeType(sizeof(StringRef)), false, 0);
252 return ValueType(BT_Pointer, getSizeType(sizeof(void*)), false, 0);
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp398 return ArgType(Ctx.getSizeType(), "size_t");
H A DScanfFormatString.cpp288 return ArgType::PtrTo(ArgType(Ctx.getSizeType(), "size_t"));
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp317 return Ctx.getSizeType();
/external/clang/lib/AST/
H A DType.cpp101 unsigned SizeTypeBits = Context.getTypeSize(Context.getSizeType());
112 unsigned Bits = Context.getTypeSize(Context.getSizeType());
H A DASTContext.cpp3902 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
3905 CanQualType ASTContext::getSizeType() const { function in class:ASTContext
3906 return getFromTargetType(Target->getSizeType());
6040 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6100 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
6109 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4);
6208 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1);
7665 Type = Context.getSizeType();
H A DDeclCXX.cpp1488 Context.getSizeType()))
/external/clang/include/clang/AST/
H A DASTContext.h1213 CanQualType getSizeType() const;

Completed in 534 milliseconds

12