Searched refs:__bytes (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/
H A Dpool_allocator.h103 _M_round_up(size_t __bytes) argument
104 { return ((__bytes + (size_t)_S_align - 1) & ~((size_t)_S_align - 1)); }
107 _M_get_free_list(size_t __bytes);
214 const size_t __bytes = __n * sizeof(_Tp); local
215 if (__bytes > size_t(_S_max_bytes) || _S_force_new == 1)
216 __ret = static_cast<_Tp*>(::operator new(__bytes));
219 _Obj* volatile* __free_list = _M_get_free_list(__bytes);
224 __ret = static_cast<_Tp*>(_M_refill(_M_round_up(__bytes)));
243 const size_t __bytes = __n * sizeof(_Tp); local
244 if (__bytes > static_cas
[all...]
H A Dmt_allocator.h147 _M_check_threshold(size_t __bytes) argument
148 { return __bytes > _M_options._M_max_bytes || _M_options._M_force_new; }
151 _M_get_binmap(size_t __bytes) argument
152 { return _M_binmap[__bytes]; }
224 _M_reserve_block(size_t __bytes, const size_t __thread_id);
227 _M_reclaim_block(char* __p, size_t __bytes);
335 _M_reserve_block(size_t __bytes, const size_t __thread_id);
338 _M_reclaim_block(char* __p, size_t __bytes);
680 const size_t __bytes = __n * sizeof(_Tp); local
681 if (__pool._M_check_threshold(__bytes))
724 const size_t __bytes = __n * sizeof(_Tp); local
728 __pool._M_reclaim_block(reinterpret_cast<char*>(__p), __bytes); local
[all...]
H A Dcodecvt_specializations.h101 int __ibom = 0, int __ebom = 0, int __bytes = 1)
103 _M_ext_bom(__ebom), _M_int_bom(__ibom), _M_bytes(__bytes)
/macosx-10.9.5/libstdcxx-60/src/
H A Dpool_allocator.cc47 __pool_alloc_base::_M_get_free_list(size_t __bytes) argument
49 size_t __i = ((__bytes + (size_t)_S_align - 1) / (size_t)_S_align - 1);
H A Dmt_allocator.cc103 __pool<false>::_M_reclaim_block(char* __p, size_t __bytes) argument
106 const size_t __which = _M_binmap[__bytes];
118 __pool<false>::_M_reserve_block(size_t __bytes, const size_t __thread_id) argument
121 const size_t __which = _M_binmap[__bytes];
251 __pool<true>::_M_reclaim_block(char* __p, size_t __bytes) argument
254 const size_t __which = _M_binmap[__bytes];
336 __pool<true>::_M_reserve_block(size_t __bytes, const size_t __thread_id) argument
339 const size_t __which = _M_binmap[__bytes];

Completed in 137 milliseconds