Searched refs:pPtr (Results 1 – 2 of 2) sorted by relevance
36 static void construct(value_type* pPtr) in construct() argument37 { new (pPtr) value_type(); } in construct()39 static void construct(value_type* pPtr, const value_type& pValue) in construct() argument40 { new (pPtr) value_type(pValue); } in construct()42 static void destroy(value_type* pPtr) in destroy() argument75 static void construct(value_type* pPtr) in construct() argument76 { new (pPtr) value_type(); } in construct()78 static void construct(value_type* pPtr, const value_type& pValue) in construct() argument79 { new (pPtr) value_type(pValue); } in construct()81 static void destroy(value_type* pPtr) in destroy() argument[all …]
153 void deallocate(pointer &pPtr, size_type N) { in deallocate() argument154 Alloc::deallocate(pPtr, N); in deallocate()155 if (0 == pPtr) in deallocate()159 void deallocate(pointer &pPtr) { in deallocate() argument160 Alloc::deallocate(pPtr); in deallocate()161 if (0 == pPtr) in deallocate()