Searched refs:__stl_new (Results 1 – 4 of 4) sorted by relevance
131 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n, __FILE… in __stl_new() function134 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n)); }
92 static void* _STLP_CALL allocate(size_t __n) { return __stl_new(__n); } in allocate()158 { return (__n > (size_t)_MAX_BYTES) ? __stl_new(__n) : _M_allocate(__n); } in allocate()
74 _M_first = __STATIC_CAST(_Tp*, __stl_new(__n * sizeof(_Tp))); in _M_allocate()
79 { return __STATIC_CAST(char*, _STLP_STD::__stl_new(__bytes)); } in __stlp_new_chunk()