Lines Matching refs:__bytes
103 _M_round_up(size_t __bytes) in _M_round_up() argument
104 { return ((__bytes + (size_t)_S_align - 1) & ~((size_t)_S_align - 1)); } in _M_round_up()
107 _M_get_free_list(size_t __bytes);
214 const size_t __bytes = __n * sizeof(_Tp); in allocate() local
215 if (__bytes > size_t(_S_max_bytes) || _S_force_new == 1) in allocate()
216 __ret = static_cast<_Tp*>(::operator new(__bytes)); in allocate()
219 _Obj* volatile* __free_list = _M_get_free_list(__bytes); in allocate()
224 __ret = static_cast<_Tp*>(_M_refill(_M_round_up(__bytes))); in allocate()
243 const size_t __bytes = __n * sizeof(_Tp); in deallocate() local
244 if (__bytes > static_cast<size_t>(_S_max_bytes) || _S_force_new == 1) in deallocate()
248 _Obj* volatile* __free_list = _M_get_free_list(__bytes); in deallocate()