Searched refs:__allocated_n (Results 1 – 2 of 2) sorted by relevance
/external/stlport/stlport/stl/ |
D | _alloc.h | 341 _Tp* _M_allocate(size_type __n, size_type& __allocated_n) { in _M_allocate() argument 352 __allocated_n = __buf_size / sizeof(value_type); in _M_allocate() 525 _Tp* allocate(size_type __n, size_type& __allocated_n) { 531 return allocate(__n, __allocated_n, _STLportAlloc()); 543 _Tp* allocate(size_type __n, size_type& __allocated_n, const __true_type& /*STLport allocator*/) 544 …loc_rebind(__STATIC_CAST(_Base&, *this), __STATIC_CAST(_Tp*, 0))._M_allocate(__n, __allocated_n); } 550 _Tp* allocate(size_type __n, size_type& __allocated_n, const __true_type& /*STLport allocator*/) 551 { return _Base::_M_allocate(__n, __allocated_n); } 554 _Tp* allocate(size_type __n, size_type& __allocated_n, const __false_type& /*STLport allocator*/) 555 { __allocated_n = __n; return allocate(__n); }
|
D | _pthread_alloc.h | 168 _Tp* allocate(size_type __n, size_type& __allocated_n) { in allocate() argument 178 __allocated_n = __buf_size / sizeof(value_type); in allocate() 354 _Tp* allocate(size_type __n, size_type& __allocated_n) { 364 __allocated_n = __buf_size / sizeof(value_type);
|