HomeSort by relevance Sort by last modified time
    Searched refs:AllocType (Results 1 - 6 of 6) 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/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 769 QualType AllocType, llvm::Value *NewPtr) {
771 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(AllocType);
772 if (!CGF.hasAggregateLLVMType(AllocType))
773 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType,
776 else if (AllocType->isAnyComplexType())
778 AllocType.isVolatileQualified());
781 = AggValueSlot::forAddr(NewPtr, Alignment, AllocType.getQualifiers(),
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 6904 milliseconds