Searched defs:__allocated_n (Results 1 - 2 of 2) sorted by relevance

/external/stlport/stlport/stl/
H A D_pthread_alloc.h168 _Tp* allocate(size_type __n, size_type& __allocated_n) { argument
178 __allocated_n = __buf_size / sizeof(value_type);
354 _Tp* allocate(size_type __n, size_type& __allocated_n) { argument
364 __allocated_n = __buf_size / sizeof(value_type);
H A D_alloc.h341 _Tp* _M_allocate(size_type __n, size_type& __allocated_n) { argument
352 __allocated_n = __buf_size / sizeof(value_type);
525 _Tp* allocate(size_type __n, size_type& __allocated_n) { argument
531 return allocate(__n, __allocated_n, _STLportAlloc());
543 _Tp* allocate(size_type __n, size_type& __allocated_n, const __true_type& /*STLport allocator*/) argument
544 { return __stl_alloc_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*/) argument
551 { return _Base::_M_allocate(__n, __allocated_n); }
554 _Tp* allocate(size_type __n, size_type& __allocated_n, const __false_type& /*STLport allocator*/) argument
555 { __allocated_n
[all...]

Completed in 72 milliseconds