Home | History | Annotate | Download | only in ext

Lines Matching defs:__bytes

144     _M_check_threshold(size_t __bytes)
145 { return __bytes > _M_options._M_max_bytes || _M_options._M_force_new; }
148 _M_get_binmap(size_t __bytes)
149 { return _M_binmap[__bytes]; }
221 _M_reserve_block(size_t __bytes, const size_t __thread_id);
224 _M_reclaim_block(char* __p, size_t __bytes);
332 _M_reserve_block(size_t __bytes, const size_t __thread_id);
335 _M_reclaim_block(char* __p, size_t __bytes);
685 const size_t __bytes = __n * sizeof(_Tp);
686 if (__pool._M_check_threshold(__bytes))
688 void* __ret = ::operator new(__bytes);
693 const size_t __which = __pool._M_get_binmap(__bytes);
714 __c = __pool._M_reserve_block(__bytes, __thread_id);
729 const size_t __bytes = __n * sizeof(_Tp);
730 if (__pool._M_check_threshold(__bytes))
733 __pool._M_reclaim_block(reinterpret_cast<char*>(__p), __bytes);