Searched defs:__old_size (Results 1 - 2 of 2) sorted by relevance

/external/stlport/stlport/stl/
H A D_string_sum_methods.h105 const size_type __old_size = this->size(); local
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(); local
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_siz
[all...]
H A D_vector.c68 const size_type __old_size = size(); local
76 _M_set(__tmp, __tmp + __old_size, __tmp + __n);

Completed in 65 milliseconds