HomeSort by relevance Sort by last modified time
    Searched defs:AllocType (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 86 enum AllocType { // Start with an unusual number instead of zero, because zero is common.
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)
131 *type = static_cast<AllocAlignmentInteger>(allocType);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 97 enum AllocType { // Start with an unusual number instead of zero, because zero is common.
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)
141 *type = static_cast<AllocAlignmentInteger>(allocType);
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 694 QualType AllocType = E->getAllocatedType();
697 CGF.getContext().getTypeAlignInChars(AllocType).getQuantity();
698 if (!CGF.hasAggregateLLVMType(AllocType))
699 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType, Alignment),
701 else if (AllocType->isAnyComplexType())
703 AllocType.isVolatileQualified());
706 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(), true);
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp 781 QualType allocType) {
783 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>();
    [all...]
TreeTransform.h     [all...]

Completed in 380 milliseconds