Lines Matching refs:__sz
778 void resize(size_type __sz);
779 void resize(size_type __sz, const_reference __x);
2044 vector<_Tp, _Allocator>::resize(size_type __sz)
2047 if (__cs < __sz)
2048 this->__append(__sz - __cs);
2049 else if (__cs > __sz)
2050 this->__destruct_at_end(this->__begin_ + __sz);
2055 vector<_Tp, _Allocator>::resize(size_type __sz, const_reference __x)
2058 if (__cs < __sz)
2059 this->__append(__sz - __cs, __x);
2060 else if (__cs > __sz)
2061 this->__destruct_at_end(this->__begin_ + __sz);
2452 void resize(size_type __sz, value_type __x = false);
3265 vector<bool, _Allocator>::resize(size_type __sz, value_type __x)
3268 if (__cs < __sz)
3272 size_type __n = __sz - __cs;
3289 __size_ = __sz;
3363 const typename vector<_Tp, _Allocator>::size_type __sz = __x.size();
3364 return __sz == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());