Searched refs:AllocType (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/wince/
H A DFastMallocWinCE.h86 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 DFastMalloc.h97 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/Sema/
H A DSemaExprCXX.cpp1002 QualType AllocType = TInfo->getType(); local
1015 AllocType,
1048 QualType AllocType,
1095 (AT = AllocType->getContainedAutoType()) && !AT->isDeduced()) {
1098 << AllocType << TypeRange);
1102 << AllocType << TypeRange);
1107 << AllocType << TypeRange);
1113 << AllocType << Deduce->getType()
1119 AllocType = AllocTypeInfo->getType();
1126 = Context.getAsConstantArrayType(AllocType)) {
1043 BuildCXXNew(SourceLocation StartLoc, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocType, TypeSourceInfo *AllocTypeInfo, Expr *ArraySize, SourceRange DirectInitRange, Expr *Initializer, bool TypeMayContainAuto) argument
1443 CheckAllocatedType(QualType AllocType, SourceLocation Loc, SourceRange R) argument
1494 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, Expr **PlaceArgs, unsigned NumPlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
[all...]
H A DTreeTransform.h7260 QualType AllocType = AllocTypeInfo->getType(); local
7267 const ArrayType *ArrayT = SemaRef.Context.getAsArrayType(AllocType);
7277 AllocType = ConsArrayT->getElementType();
7282 AllocType = DepArrayT->getElementType();
7293 AllocType,
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp807 QualType AllocType, llvm::Value *NewPtr) {
809 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(AllocType);
810 if (!CGF.hasAggregateLLVMType(AllocType))
811 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType,
814 else if (AllocType->isAnyComplexType())
816 AllocType.isVolatileQualified());
819 = AggValueSlot::forAddr(NewPtr, Alignment, AllocType.getQualifiers(),
806 StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init, QualType AllocType, llvm::Value *NewPtr) argument
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp33 enum AllocType { enum
44 AllocType AllocTy;
88 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
/external/clang/include/clang/Sema/
H A DSema.h3704 QualType AllocType,
3711 bool CheckAllocatedType(QualType AllocType, SourceLocation Loc,
3714 bool UseGlobal, QualType AllocType, bool IsArray,

Completed in 172 milliseconds