Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_string_sum_methods.h105 const size_type __old_size = this->size(); in _M_append_sum() local
106 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size)) in _M_append_sum()
108 if (__old_size + __s_size > this->capacity()) { in _M_append_sum()
109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; in _M_append_sum()
129 const size_type __old_size = this->size(); in _M_append_sum_pos() local
130 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size)) in _M_append_sum_pos()
132 if (__old_size + __s_size > this->capacity()) { in _M_append_sum_pos()
133 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; in _M_append_sum_pos()
D_vector.c68 const size_type __old_size = size(); in reserve() local
76 _M_set(__tmp, __tmp + __old_size, __tmp + __n); in reserve()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dvector753 size_type __old_size = size();
755 __annotate_shrink(__old_size);
822 size_type __old_size = size();
824 __annotate_shrink(__old_size);
866 void __annotate_shrink(size_type __old_size)
869 data() + __old_size, data() + size());
1905 difference_type __old_size = __old_last - this->__begin_;
1909 __old_last = this->__begin_ + __old_size;
2524 size_type __old_size = this->__size_;
2526 _VSTD::fill_n(__make_iter(__old_size), __n, __x);
[all …]