Home
last modified time | relevance | path

Searched refs:pPtr (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h34 static void construct(value_type* pPtr) { new (pPtr) value_type(); } in construct() argument
36 static void construct(value_type* pPtr, const value_type& pValue) { in construct() argument
37 new (pPtr) value_type(pValue); in construct()
40 static void destroy(value_type* pPtr) {} in destroy() argument
70 static void construct(value_type* pPtr) { new (pPtr) value_type(); } in construct() argument
72 static void construct(value_type* pPtr, const value_type& pValue) { in construct() argument
73 new (pPtr) value_type(pValue); in construct()
76 static void destroy(value_type* pPtr) { pPtr->~value_type(); } in destroy() argument
119 void construct(pointer pPtr, const_reference pValue) { in construct() argument
120 chunk_type::construct(pPtr, pValue); in construct()
[all …]
DGCFactory.h136 void deallocate(pointer& pPtr, size_type N) { in deallocate() argument
137 Alloc::deallocate(pPtr, N); in deallocate()
138 if (pPtr == NULL) in deallocate()
142 void deallocate(pointer& pPtr) { in deallocate() argument
143 Alloc::deallocate(pPtr); in deallocate()
144 if (pPtr == NULL) in deallocate()