Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h39 static void construct(value_type* pPtr) in construct() argument
40 { new (pPtr) value_type(); } in construct()
42 static void construct(value_type* pPtr, const value_type& pValue) in construct() argument
43 { new (pPtr) value_type(pValue); } in construct()
45 static void destroy(value_type* pPtr) in destroy() argument
78 static void construct(value_type* pPtr) in construct() argument
79 { new (pPtr) value_type(); } in construct()
81 static void construct(value_type* pPtr, const value_type& pValue) in construct() argument
82 { new (pPtr) value_type(pValue); } in construct()
84 static void destroy(value_type* pPtr) in destroy() argument
[all …]
DGCFactory.h156 void deallocate(pointer &pPtr, size_type N) { in deallocate() argument
157 Alloc::deallocate(pPtr, N); in deallocate()
158 if (0 == pPtr) in deallocate()
162 void deallocate(pointer &pPtr) { in deallocate() argument
163 Alloc::deallocate(pPtr); in deallocate()
164 if (0 == pPtr) in deallocate()
Draw_mem_ostream.h37 virtual void write_impl(const char *pPtr, size_t pSize);
/frameworks/compile/mclinker/lib/Support/
Draw_mem_ostream.cpp35 void raw_mem_ostream::write_impl(const char *pPtr, size_t pSize) in write_impl() argument
38 memcpy(region->start(), pPtr, pSize); in write_impl()