Home
last modified time | relevance | path

Searched refs:__old_size (Results 1 – 5 of 5) sorted by relevance

/freebsd-10-stable/contrib/libstdc++/include/bits/
Dvector.tcc75 const size_type __old_size = size(); in _GLIBCXX_BEGIN_NESTED_NAMESPACE() local
84 this->_M_impl._M_finish = __tmp + __old_size; in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
260 const size_type __old_size = size(); in _M_insert_aux() local
261 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() local
346 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 …]
Dbasic_string.tcc453 const size_type __old_size = this->size(); in _M_mutate() local
454 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()
Dstl_tree.h1292 const size_type __old_size = size();
1294 return __old_size - size();
/freebsd-10-stable/contrib/libstdc++/include/ext/
Dvstring.tcc104 const size_type __old_size = this->size(); in _M_replace_aux() local
105 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() local
135 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()
/freebsd-10-stable/contrib/libc++/include/
Dvector749 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) const
864 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 …]