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

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

Completed in 30 milliseconds