HomeSort by relevance Sort by last modified time
    Searched defs:__len (Results 1 - 25 of 34) sorted by null

1 2

  /external/stlport/stlport/stl/
_string_hash.h 36 size_t __len = __s.size(); local
38 for ( size_t __i = 0; __i < __len; ++__i)
_string_sum_methods.h 109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; local
110 pointer __new_start = this->_M_start_of_storage.allocate(__len);
115 this->_M_reset(__new_start, __new_finish, __new_start + __len);
133 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; local
134 pointer __new_start = this->_M_start_of_storage.allocate(__len);
139 this->_M_reset(__new_start, __new_finish, __new_start + __len);
_list.c 97 size_type __len = 0; local
98 for ( ; __i != end() && __len < __new_size; ++__i, ++__len);
100 if (__len == __new_size)
103 insert(end(), __new_size - __len, __x);
_tree.c 689 int __len = __black_count(_M_leftmost(), _M_root()); local
705 if (!__L && !__R && __black_count(__x, _M_root()) != __len)
_vector.c 87 size_type __len = _M_compute_next_size(__fill_len); local
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
102 this->_M_end_of_storage.deallocate(__new_start,__len)))
104 _M_set(__new_start, __new_finish, __new_start + __len);
110 size_type __len = _M_compute_next_size(__fill_len); local
111 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
118 _M_set(__new_start, __new_finish, __new_start + __len);
188 size_type __len = __xlen
    [all...]
_algobase.c 455 _Distance __len = _STLP_STD::distance(__first, __last); local
459 while (__len > 0) {
460 __half = __len >> 1;
467 __len = __len - __half - 1;
470 __len = __half;
_num_put.c 148 __copy_integer_and_fill(const _CharT* __buf, ptrdiff_t __len,
152 if (__len >= __wid)
153 return _STLP_STD::copy(__buf, __buf + __len, __oi);
160 __STATIC_CAST(streamsize, __wid - __len)));
164 __oi = _STLP_STD::copy(__buf, __buf + __len, __oi);
167 else if (__dir == ios_base::internal && __len != 0 &&
171 return _STLP_STD::copy(__buf + 1, __buf + __len, __oi);
173 else if (__dir == ios_base::internal && __len >= 2 &&
179 return _STLP_STD::copy(__buf + 2, __buf + __len, __oi);
183 return _STLP_STD::copy(__buf, __buf + __len, __oi)
203 ptrdiff_t __len = __iend - __buf; local
235 ptrdiff_t __len = __iend - __buf; local
    [all...]
_string_workaround.h 221 size_type __len = this->_M_compute_next_size(__n); local
222 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
227 this->_M_reset(__new_start, __new_finish, __new_start + __len);
377 size_type __len = this->_M_compute_next_size(__n); local
378 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
384 this->_M_reset(__new_start, __new_finish, __new_start + __len);
_string.c 200 size_type __len = _M_compute_next_size(__n); local
201 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
206 this->_M_reset(__new_start, __new_finish, __new_start + __len);
266 size_type __len = _M_compute_next_size(1); local
267 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
274 this->_M_reset(__new_start, __new_finish, __new_start + __len);
301 size_type __len = _M_compute_next_size(__n); local
302 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len)
358 size_type __len = _M_compute_next_size(__n); local
374 size_type __len = (size_type)(__last - __first); local
393 const difference_type __len = __last - __first; local
423 const size_t __len = size(); local
454 const size_type __len = size(); local
470 const size_type __len = size(); local
499 const size_type __len = size(); local
543 const size_type __len = size(); local
561 const size_type __len = size(); local
    [all...]
_string.h 306 size_type __len = __size + (max)(__n, __size) + 1; local
307 if (__len > max_size() || __len < __size)
308 __len = max_size(); // overflow
309 return __len;
473 size_type __len = _M_compute_next_size(__n); local
474 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
479 this->_M_reset(__new_start, __new_finish, __new_start + __len);
621 size_type __len = (min) (__n, __s.size() - __beg) local
625 __s._M_Start() + __beg, __s._M_Start() + __beg + __len, &__s == this); local
642 size_type __len = _Traits::length(__s); local
691 size_type __len = _M_compute_next_size(__n); local
817 const size_type __len = (min) (__n, __size - __pos); local
844 const size_type __len = (min) (__n1, __size - __pos); local
861 const size_type __len = (min) (__n1, __size - __pos); local
937 const size_type __len = (min) (__n, size() - __pos); local
    [all...]
_vector.h 175 size_type __len = __size + (max)(__n, __size); local
176 if (__len > max_size() || __len < __size)
177 __len = max_size(); // overflow
178 return __len;
325 const size_type __len = _STLP_STD::distance(__first, __last); local
326 if (__len > capacity()) {
327 size_type __n = __len;
330 _M_set(__tmp, __tmp + __len, __tmp + __n);
332 else if (size() >= __len) {
432 size_type __len = _M_compute_next_size(__n); local
    [all...]
_algo.c 754 _Predicate __pred, _Distance __len,
756 if (__len == 1)
759 _Distance __half_len = __len / 2;
763 _STLP_PRIV __inplace_stable_partition(__middle, __last, __pred, __len - __half_len, true, __pred_of_before_last));
770 _Predicate __pred, _Distance __len,
773 if (__len <= __buffer_size) {
778 ++__result2; ++__first; --__len;
780 for (; __first != __last ; ++__first, --__len) {
781 if (((__len == 1) && (__pred_of_before_last || __pred(*__first))) ||
782 ((__len != 1) && __pred(*__first)))
1077 _Distance __len = __last - __first; local
1162 _Distance __len = (__last - __first + 1) \/ 2; local
1358 _Distance __len = _STLP_STD::distance(__first, __last); local
1383 _Distance __len = _STLP_STD::distance(__first, __last); local
    [all...]
  /ndk/sources/android/stlport/stlport/stl/
_string_hash.h 36 size_t __len = __s.size(); local
38 for ( size_t __i = 0; __i < __len; ++__i)
_string_sum_methods.h 109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; local
110 pointer __new_start = this->_M_start_of_storage.allocate(__len);
115 this->_M_reset(__new_start, __new_finish, __new_start + __len);
133 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1; local
134 pointer __new_start = this->_M_start_of_storage.allocate(__len);
139 this->_M_reset(__new_start, __new_finish, __new_start + __len);
_list.c 97 size_type __len = 0; local
98 for ( ; __i != end() && __len < __new_size; ++__i, ++__len);
100 if (__len == __new_size)
103 insert(end(), __new_size - __len, __x);
_tree.c 689 int __len = __black_count(_M_leftmost(), _M_root()); local
705 if (!__L && !__R && __black_count(__x, _M_root()) != __len)
_vector.c 87 size_type __len = _M_compute_next_size(__fill_len); local
88 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
102 this->_M_end_of_storage.deallocate(__new_start,__len)))
104 _M_set(__new_start, __new_finish, __new_start + __len);
110 size_type __len = _M_compute_next_size(__fill_len); local
111 pointer __new_start = this->_M_end_of_storage.allocate(__len, __len);
118 _M_set(__new_start, __new_finish, __new_start + __len);
188 size_type __len = __xlen
    [all...]
_algobase.c 455 _Distance __len = _STLP_STD::distance(__first, __last); local
459 while (__len > 0) {
460 __half = __len >> 1;
467 __len = __len - __half - 1;
470 __len = __half;
_num_put.c 148 __copy_integer_and_fill(const _CharT* __buf, ptrdiff_t __len,
152 if (__len >= __wid)
153 return _STLP_STD::copy(__buf, __buf + __len, __oi);
160 __STATIC_CAST(streamsize, __wid - __len)));
164 __oi = _STLP_STD::copy(__buf, __buf + __len, __oi);
167 else if (__dir == ios_base::internal && __len != 0 &&
171 return _STLP_STD::copy(__buf + 1, __buf + __len, __oi);
173 else if (__dir == ios_base::internal && __len >= 2 &&
179 return _STLP_STD::copy(__buf + 2, __buf + __len, __oi);
183 return _STLP_STD::copy(__buf, __buf + __len, __oi)
203 ptrdiff_t __len = __iend - __buf; local
235 ptrdiff_t __len = __iend - __buf; local
    [all...]
_string_workaround.h 221 size_type __len = this->_M_compute_next_size(__n); local
222 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
227 this->_M_reset(__new_start, __new_finish, __new_start + __len);
377 size_type __len = this->_M_compute_next_size(__n); local
378 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
384 this->_M_reset(__new_start, __new_finish, __new_start + __len);
_string.c 200 size_type __len = _M_compute_next_size(__n); local
201 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
206 this->_M_reset(__new_start, __new_finish, __new_start + __len);
266 size_type __len = _M_compute_next_size(1); local
267 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
274 this->_M_reset(__new_start, __new_finish, __new_start + __len);
301 size_type __len = _M_compute_next_size(__n); local
302 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len)
358 size_type __len = _M_compute_next_size(__n); local
374 size_type __len = (size_type)(__last - __first); local
393 const difference_type __len = __last - __first; local
423 const size_t __len = size(); local
454 const size_type __len = size(); local
470 const size_type __len = size(); local
499 const size_type __len = size(); local
543 const size_type __len = size(); local
561 const size_type __len = size(); local
    [all...]
_string.h 306 size_type __len = __size + (max)(__n, __size) + 1; local
307 if (__len > max_size() || __len < __size)
308 __len = max_size(); // overflow
309 return __len;
473 size_type __len = _M_compute_next_size(__n); local
474 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
479 this->_M_reset(__new_start, __new_finish, __new_start + __len);
621 size_type __len = (min) (__n, __s.size() - __beg) local
625 __s._M_Start() + __beg, __s._M_Start() + __beg + __len, &__s == this); local
642 size_type __len = _Traits::length(__s); local
691 size_type __len = _M_compute_next_size(__n); local
817 const size_type __len = (min) (__n, __size - __pos); local
844 const size_type __len = (min) (__n1, __size - __pos); local
861 const size_type __len = (min) (__n1, __size - __pos); local
937 const size_type __len = (min) (__n, size() - __pos); local
    [all...]
_vector.h 175 size_type __len = __size + (max)(__n, __size); local
176 if (__len > max_size() || __len < __size)
177 __len = max_size(); // overflow
178 return __len;
325 const size_type __len = _STLP_STD::distance(__first, __last); local
326 if (__len > capacity()) {
327 size_type __n = __len;
330 _M_set(__tmp, __tmp + __len, __tmp + __n);
332 else if (size() >= __len) {
432 size_type __len = _M_compute_next_size(__n); local
    [all...]
  /external/stlport/stlport/stl/debug/
_list.h 294 size_type __len = 0; local
295 for ( ; __i != _M_non_dbg_impl.end() && __len < __new_size; ++__i, ++__len);
297 if (__len == __new_size)
300 _M_non_dbg_impl.insert(_M_non_dbg_impl.end(), __new_size - __len, __x);
  /ndk/sources/android/stlport/stlport/stl/debug/
_list.h 294 size_type __len = 0; local
295 for ( ; __i != _M_non_dbg_impl.end() && __len < __new_size; ++__i, ++__len);
297 if (__len == __new_size)
300 _M_non_dbg_impl.insert(_M_non_dbg_impl.end(), __new_size - __len, __x);

Completed in 1586 milliseconds

1 2