Lines Matching refs:__sz
779 void resize(size_type __sz);
780 void resize(size_type __sz, const_reference __x);
2020 vector<_Tp, _Allocator>::resize(size_type __sz)
2023 if (__cs < __sz)
2024 this->__append(__sz - __cs);
2025 else if (__cs > __sz)
2026 this->__destruct_at_end(this->__begin_ + __sz);
2031 vector<_Tp, _Allocator>::resize(size_type __sz, const_reference __x)
2034 if (__cs < __sz)
2035 this->__append(__sz - __cs, __x);
2036 else if (__cs > __sz)
2037 this->__destruct_at_end(this->__begin_ + __sz);
2428 void resize(size_type __sz, value_type __x = false);
3241 vector<bool, _Allocator>::resize(size_type __sz, value_type __x)
3244 if (__cs < __sz)
3248 size_type __n = __sz - __cs;
3265 __size_ = __sz;
3339 const typename vector<_Tp, _Allocator>::size_type __sz = __x.size();
3340 return __sz == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());