Home | History | Annotate | Download | only in ext

Lines Matching defs:__bytes

146     _M_check_threshold(size_t __bytes)
147 { return __bytes > _M_options._M_max_bytes || _M_options._M_force_new; }
150 _M_get_binmap(size_t __bytes)
151 { return _M_binmap[__bytes]; }
223 _M_reserve_block(size_t __bytes, const size_t __thread_id);
226 _M_reclaim_block(char* __p, size_t __bytes) throw ();
334 _M_reserve_block(size_t __bytes, const size_t __thread_id);
337 _M_reclaim_block(char* __p, size_t __bytes) throw ();
687 const size_t __bytes = __n * sizeof(_Tp);
688 if (__pool._M_check_threshold(__bytes))
690 void* __ret = ::operator new(__bytes);
695 const size_t __which = __pool._M_get_binmap(__bytes);
716 __c = __pool._M_reserve_block(__bytes, __thread_id);
731 const size_t __bytes = __n * sizeof(_Tp);
732 if (__pool._M_check_threshold(__bytes))
735 __pool._M_reclaim_block(reinterpret_cast<char*>(__p), __bytes);