Home | History | Annotate | Download | only in wince

Lines Matching refs:AllocType

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);
140 inline void fastMallocMatchValidateMalloc(void* p, Internal::AllocType allocType)
145 Internal::setFastMallocMatchValidationType(p, allocType);
149 inline void fastMallocMatchValidateFree(void* p, Internal::AllocType allocType)
154 if (Internal::fastMallocMatchValidationType(p) != allocType)
161 inline void fastMallocMatchValidateMalloc(void*, Internal::AllocType)
165 inline void fastMallocMatchValidateFree(void*, Internal::AllocType)