Searched refs:pPtr (Results 1 – 4 of 4) sorted by relevance
39 static void construct(value_type* pPtr) in construct() argument40 { new (pPtr) value_type(); } in construct()42 static void construct(value_type* pPtr, const value_type& pValue) in construct() argument43 { new (pPtr) value_type(pValue); } in construct()45 static void destroy(value_type* pPtr) in destroy() argument78 static void construct(value_type* pPtr) in construct() argument79 { new (pPtr) value_type(); } in construct()81 static void construct(value_type* pPtr, const value_type& pValue) in construct() argument82 { new (pPtr) value_type(pValue); } in construct()84 static void destroy(value_type* pPtr) in destroy() argument[all …]
156 void deallocate(pointer &pPtr, size_type N) { in deallocate() argument157 Alloc::deallocate(pPtr, N); in deallocate()158 if (0 == pPtr) in deallocate()162 void deallocate(pointer &pPtr) { in deallocate() argument163 Alloc::deallocate(pPtr); in deallocate()164 if (0 == pPtr) in deallocate()
37 virtual void write_impl(const char *pPtr, size_t pSize);
35 void raw_mem_ostream::write_impl(const char *pPtr, size_t pSize) in write_impl() argument38 memcpy(region->start(), pPtr, pSize); in write_impl()