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

/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h115 // pPtr, and using its copy constructor to initialized its value to pValue.
117 // @param pPtr the address where the object to be constructed
119 void construct(pointer pPtr, const_reference pValue) argument
120 { new (pPtr) value_type(pValue); }
123 // pPtr, and using its default constructor to initialized its value to
126 // @param pPtr the address where the object to be constructed
127 void construct(pointer pPtr) argument
128 { new (pPtr) value_type(); }
131 // @para pPtr the address where the data to be destruected.
132 void destroy(pointer pPtr) argument
172 deallocate(pointer &pPtr, size_type N) argument
185 deallocate(pointer &pPtr) argument
[all...]
H A DGCFactory.h156 void deallocate(pointer &pPtr, size_type N) { argument
157 Alloc::deallocate(pPtr, N);
158 if (0 == pPtr)
162 void deallocate(pointer &pPtr) { argument
163 Alloc::deallocate(pPtr);
164 if (0 == pPtr)

Completed in 130 milliseconds