Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_new.h131 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n, __FILE… in __stl_new() function
134 inline void* _STLP_CALL __stl_new(size_t __n) { _STLP_CHECK_NULL_ALLOC(::operator new(__n)); }
D_alloc.h92 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()
D_valarray.h74 _M_first = __STATIC_CAST(_Tp*, __stl_new(__n * sizeof(_Tp))); in _M_allocate()
/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp79 { return __STATIC_CAST(char*, _STLP_STD::__stl_new(__bytes)); } in __stlp_new_chunk()