Searched defs:AllocType (Results 1 - 5 of 5) sorted by relevance
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
H A D | FastMallocWinCE.h | 86 enum AllocType { // Start with an unusual number instead of zero, because zero is common. enum in namespace:WTF::Internal 106 // the allocation memory which is assigned one of the AllocType 114 // Return the AllocType tag associated with the allocated block p. 115 inline AllocType fastMallocMatchValidationType(const void* p) 118 return static_cast<AllocType>(*type); 121 // Return the address of the AllocType tag associated with the allocated block p. 127 // Set the AllocType tag to be associaged with the allocated block p. 128 inline void setFastMallocMatchValidationType(void* p, AllocType allocType) 140 inline void fastMallocMatchValidateMalloc(void* p, Internal::AllocType allocType) 149 inline void fastMallocMatchValidateFree(void* p, Internal::AllocType allocTyp [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
H A D | FastMalloc.h | 97 enum AllocType { // Start with an unusual number instead of zero, because zero is common. enum in namespace:WTF::Internal 116 // the allocation memory which is assigned one of the AllocType 124 // Return the AllocType tag associated with the allocated block p. 125 inline AllocType fastMallocMatchValidationType(const void* p) 128 return static_cast<AllocType>(*type); 131 // Return the address of the AllocType tag associated with the allocated block p. 137 // Set the AllocType tag to be associaged with the allocated block p. 138 inline void setFastMallocMatchValidationType(void* p, AllocType allocType) 150 inline void fastMallocMatchValidateMalloc(void* p, Internal::AllocType allocType) 159 inline void fastMallocMatchValidateFree(void* p, Internal::AllocType allocTyp [all...] |
/external/clang/lib/CodeGen/ |
H A D | CGExprCXX.cpp | 751 QualType AllocType = E->getAllocatedType(); local 754 CGF.getContext().getTypeAlignInChars(AllocType).getQuantity(); 755 if (!CGF.hasAggregateLLVMType(AllocType)) 756 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType, Alignment), 758 else if (AllocType->isAnyComplexType()) 760 AllocType.isVolatileQualified()); 763 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
|
/external/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 877 QualType AllocType = TInfo->getType(); local 886 AllocType, 901 QualType AllocType, 911 if (TypeMayContainAuto && AllocType->getContainedAutoType()) { 914 << AllocType << TypeRange); 919 << AllocType << TypeRange); 924 << AllocType 932 AllocType = AllocTypeInfo->getType(); 939 = Context.getAsConstantArrayType(AllocType)) { 943 AllocType 896 BuildCXXNew(SourceLocation StartLoc, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocType, TypeSourceInfo *AllocTypeInfo, Expr *ArraySize, SourceLocation ConstructorLParen, MultiExprArg ConstructorArgs, SourceLocation ConstructorRParen, bool TypeMayContainAuto) argument 1177 CheckAllocatedType(QualType AllocType, SourceLocation Loc, SourceRange R) argument 1230 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, Expr **PlaceArgs, unsigned NumPlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument [all...] |
H A D | TreeTransform.h | 7000 QualType AllocType = AllocTypeInfo->getType(); local 7007 const ArrayType *ArrayT = SemaRef.Context.getAsArrayType(AllocType); 7017 AllocType = ConsArrayT->getElementType(); 7022 AllocType = DepArrayT->getElementType(); 7033 AllocType,
|
Completed in 150 milliseconds