Home | History | Annotate | Download | only in ext

Lines Matching defs:__bytes

96       _M_round_up(size_t __bytes)
97 { return ((__bytes + (size_t)_S_align - 1) & ~((size_t)_S_align - 1)); }
100 _M_get_free_list(size_t __bytes);
217 const size_t __bytes = __n * sizeof(_Tp);
218 if (__bytes > size_t(_S_max_bytes) || _S_force_new > 0)
219 __ret = static_cast<_Tp*>(::operator new(__bytes));
222 _Obj* volatile* __free_list = _M_get_free_list(__bytes);
227 __ret = static_cast<_Tp*>(_M_refill(_M_round_up(__bytes)));
246 const size_t __bytes = __n * sizeof(_Tp);
247 if (__bytes > static_cast<size_t>(_S_max_bytes) || _S_force_new > 0)
251 _Obj* volatile* __free_list = _M_get_free_list(__bytes);