Home | History | Annotate | Download | only in stl

Lines Matching refs:__old_size

105     const size_type __old_size = this->size();
106 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
108 if (__old_size + __s_size > this->capacity()) {
109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1;
129 const size_type __old_size = this->size();
130 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
132 if (__old_size + __s_size > this->capacity()) {
133 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1;