Home | History | Annotate | Download | only in ext

Lines Matching refs:__bytes

100       _M_round_up(size_t __bytes)
101 { return ((__bytes + (size_t)_S_align - 1) & ~((size_t)_S_align - 1)); }
104 _M_get_free_list(size_t __bytes) throw ();
233 const size_t __bytes = __n * sizeof(_Tp);
234 if (__bytes > size_t(_S_max_bytes) || _S_force_new > 0)
235 __ret = static_cast<_Tp*>(::operator new(__bytes));
238 _Obj* volatile* __free_list = _M_get_free_list(__bytes);
243 __ret = static_cast<_Tp*>(_M_refill(_M_round_up(__bytes)));
262 const size_t __bytes = __n * sizeof(_Tp);
263 if (__bytes > static_cast<size_t>(_S_max_bytes) || _S_force_new > 0)
267 _Obj* volatile* __free_list = _M_get_free_list(__bytes);