Searched refs:pPtr (Results 1 – 2 of 2) sorted by relevance
34 static void construct(value_type* pPtr) { new (pPtr) value_type(); } in construct() argument36 static void construct(value_type* pPtr, const value_type& pValue) { in construct() argument37 new (pPtr) value_type(pValue); in construct()40 static void destroy(value_type* pPtr) {} in destroy() argument70 static void construct(value_type* pPtr) { new (pPtr) value_type(); } in construct() argument72 static void construct(value_type* pPtr, const value_type& pValue) { in construct() argument73 new (pPtr) value_type(pValue); in construct()76 static void destroy(value_type* pPtr) { pPtr->~value_type(); } in destroy() argument119 void construct(pointer pPtr, const_reference pValue) { in construct() argument120 chunk_type::construct(pPtr, pValue); in construct()[all …]
136 void deallocate(pointer& pPtr, size_type N) { in deallocate() argument137 Alloc::deallocate(pPtr, N); in deallocate()138 if (pPtr == NULL) in deallocate()142 void deallocate(pointer& pPtr) { in deallocate() argument143 Alloc::deallocate(pPtr); in deallocate()144 if (pPtr == NULL) in deallocate()