Home
last modified time | relevance | path

Searched refs:AllocType (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/wince/
DFastMallocWinCE.h86 …enum AllocType { // Start with an unusual number instead of zero, because zero … enum
115 inline AllocType fastMallocMatchValidationType(const void* p) in fastMallocMatchValidationType()
118 return static_cast<AllocType>(*type); in fastMallocMatchValidationType()
128 inline void setFastMallocMatchValidationType(void* p, AllocType allocType) in setFastMallocMatchValidationType()
140 inline void fastMallocMatchValidateMalloc(void* p, Internal::AllocType allocType) in fastMallocMatchValidateMalloc()
149 inline void fastMallocMatchValidateFree(void* p, Internal::AllocType allocType) in fastMallocMatchValidateFree()
161 inline void fastMallocMatchValidateMalloc(void*, Internal::AllocType) in fastMallocMatchValidateMalloc() argument
165 inline void fastMallocMatchValidateFree(void*, Internal::AllocType) in fastMallocMatchValidateFree() argument
/external/webkit/Source/JavaScriptCore/wtf/
DFastMalloc.h97 …enum AllocType { // Start with an unusual number instead of zero, because zero … enum
125 inline AllocType fastMallocMatchValidationType(const void* p) in fastMallocMatchValidationType()
128 return static_cast<AllocType>(*type); in fastMallocMatchValidationType()
138 inline void setFastMallocMatchValidationType(void* p, AllocType allocType) in setFastMallocMatchValidationType()
150 inline void fastMallocMatchValidateMalloc(void* p, Internal::AllocType allocType) in fastMallocMatchValidateMalloc()
159 inline void fastMallocMatchValidateFree(void* p, Internal::AllocType allocType) in fastMallocMatchValidateFree()
171 inline void fastMallocMatchValidateMalloc(void*, Internal::AllocType) in fastMallocMatchValidateMalloc() argument
175 inline void fastMallocMatchValidateFree(void*, Internal::AllocType) in fastMallocMatchValidateFree() argument
/external/clang/lib/Sema/
DSemaExprCXX.cpp886 QualType AllocType = TInfo->getType(); in ActOnCXXNew() local
895 AllocType, in ActOnCXXNew()
910 QualType AllocType, in BuildCXXNew() argument
920 if (TypeMayContainAuto && AllocType->getContainedAutoType()) { in BuildCXXNew()
923 << AllocType << TypeRange); in BuildCXXNew()
928 << AllocType << TypeRange); in BuildCXXNew()
933 << AllocType in BuildCXXNew()
941 AllocType = AllocTypeInfo->getType(); in BuildCXXNew()
948 = Context.getAsConstantArrayType(AllocType)) { in BuildCXXNew()
952 AllocType = Array->getElementType(); in BuildCXXNew()
[all …]
DTreeTransform.h6908 QualType AllocType = AllocTypeInfo->getType(); in TransformCXXNewExpr() local
6915 const ArrayType *ArrayT = SemaRef.Context.getAsArrayType(AllocType); in TransformCXXNewExpr()
6925 AllocType = ConsArrayT->getElementType(); in TransformCXXNewExpr()
6930 AllocType = DepArrayT->getElementType(); in TransformCXXNewExpr()
6941 AllocType, in TransformCXXNewExpr()
/external/clang/lib/CodeGen/
DCGExprCXX.cpp694 QualType AllocType = E->getAllocatedType(); in StoreAnyExprIntoOneUnit() local
697 CGF.getContext().getTypeAlignInChars(AllocType).getQuantity(); in StoreAnyExprIntoOneUnit()
698 if (!CGF.hasAggregateLLVMType(AllocType)) in StoreAnyExprIntoOneUnit()
699 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType, Alignment), in StoreAnyExprIntoOneUnit()
701 else if (AllocType->isAnyComplexType()) in StoreAnyExprIntoOneUnit()
703 AllocType.isVolatileQualified()); in StoreAnyExprIntoOneUnit()
706 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(), true); in StoreAnyExprIntoOneUnit()
/external/clang/include/clang/Sema/
DSema.h2924 QualType AllocType,
2932 bool CheckAllocatedType(QualType AllocType, SourceLocation Loc,
2935 bool UseGlobal, QualType AllocType, bool IsArray,