Searched refs:__old_size (Results 1 – 5 of 5) sorted by relevance
75 const size_type __old_size = size(); in _GLIBCXX_BEGIN_NESTED_NAMESPACE() local84 this->_M_impl._M_finish = __tmp + __old_size; in _GLIBCXX_BEGIN_NESTED_NAMESPACE()260 const size_type __old_size = size(); in _M_insert_aux() local261 if (__old_size == this->max_size()) in _M_insert_aux()267 size_type __len = __old_size != 0 ? 2 * __old_size : 1; in _M_insert_aux()268 if (__len < __old_size) in _M_insert_aux()345 const size_type __old_size = size(); in _M_fill_insert() local346 if (this->max_size() - __old_size < __n) in _M_fill_insert()350 size_type __len = __old_size + std::max(__old_size, __n); in _M_fill_insert()351 if (__len < __old_size) in _M_fill_insert()[all …]
453 const size_type __old_size = this->size(); in _M_mutate() local454 const size_type __new_size = __old_size + __len2 - __len1; in _M_mutate()455 const size_type __how_much = __old_size - __pos - __len1; in _M_mutate()
1292 const size_type __old_size = size();1294 return __old_size - size();
104 const size_type __old_size = this->size(); in _M_replace_aux() local105 const size_type __new_size = __old_size + __n2 - __n1; in _M_replace_aux()111 const size_type __how_much = __old_size - __pos1 - __n1; in _M_replace_aux()134 const size_type __old_size = this->size(); in _M_replace() local135 const size_type __new_size = __old_size + __len2 - __len1; in _M_replace()141 const size_type __how_much = __old_size - __pos - __len1; in _M_replace()
749 size_type __old_size = size();751 __annotate_shrink(__old_size);817 size_type __old_size = size();819 __annotate_shrink(__old_size);861 void __annotate_shrink(size_type __old_size) const864 data() + __old_size, data() + size());1920 difference_type __old_size = __old_last - this->__begin_;1924 __old_last = this->__begin_ + __old_size;2540 size_type __old_size = this->__size_;2542 _VSTD::fill_n(__make_iter(__old_size), __n, __x);[all …]