HomeSort by relevance Sort by last modified time
    Searched defs:__len (Results 126 - 150 of 194) sorted by null

1 2 3 4 56 7 8

  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_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...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_bvector.h 954 const size_type __len = std::distance(__first, __last); local
955 if (__len < size())
1013 const size_type __len = size() + std::max(size(), __n); local
1014 return (__len < size() || __len > max_size()) ? max_size() : __len;
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 1898 const size_type __len = std::min(__size, __osize); local
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_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/
_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...]
_bvector.h 404 size_type __len = size() ? 2 * size() : _STLP_WORD_BIT; local
405 __chunk_type* __q = this->_M_bit_alloc(__len);
410 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
457 size_type __len = size() + (max)(size(), __n); local
458 __chunk_type* __q = this->_M_bit_alloc(__len);
463 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
639 size_type __len = _STLP_STD::distance(__first, __last); local
640 if (__len < size())
730 size_type __len = size() + (max)(size(), __n); local
731 __chunk_type* __q = this->_M_bit_alloc(__len);
751 size_type __len = size() + (max)(size(), __n); local
772 size_type __len = size() + (max)(size(), __n); local
    [all...]
_deque.h 639 size_type __len = __last - __first;
640 if (__len > __size) {
652 size_type __len = _STLP_STD::distance(__first, __last); local
653 if (__len > size()) {
816 const size_type __len = size(); local
817 if (__new_size < __len)
820 insert(this->_M_finish, __new_size - __len, __x);
    [all...]
_rope.c 106 size_t __len = _S_iterator_buf_len; local
112 if (__buf_start_pos + __len <= __pos) {
113 __buf_start_pos = __pos - __len/4;
114 if (__buf_start_pos + __len > __leaf_end) {
115 __buf_start_pos = __leaf_end - __len;
118 if (__buf_start_pos + __len > __leaf_end) {
119 __len = __leaf_end - __buf_start_pos;
121 (*__fn)(__buf_start_pos - __leaf_pos, __len, __x._M_tmp_buf._M_data);
124 __x._M_buf_end = __x._M_tmp_buf._M_data + __len;
212 size_t __len = __current_node->_M_size._M_data local
825 size_t __len = __end - __begin; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_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...]
_bvector.h 404 size_type __len = size() ? 2 * size() : _STLP_WORD_BIT; local
405 __chunk_type* __q = this->_M_bit_alloc(__len);
410 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
457 size_type __len = size() + (max)(size(), __n); local
458 __chunk_type* __q = this->_M_bit_alloc(__len);
463 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
639 size_type __len = _STLP_STD::distance(__first, __last); local
640 if (__len < size())
730 size_type __len = size() + (max)(size(), __n); local
731 __chunk_type* __q = this->_M_bit_alloc(__len);
751 size_type __len = size() + (max)(size(), __n); local
772 size_type __len = size() + (max)(size(), __n); local
    [all...]
_deque.h 639 size_type __len = __last - __first;
640 if (__len > __size) {
652 size_type __len = _STLP_STD::distance(__first, __last); local
653 if (__len > size()) {
816 const size_type __len = size(); local
817 if (__new_size < __len)
820 insert(this->_M_finish, __new_size - __len, __x);
    [all...]
_rope.c 106 size_t __len = _S_iterator_buf_len; local
112 if (__buf_start_pos + __len <= __pos) {
113 __buf_start_pos = __pos - __len/4;
114 if (__buf_start_pos + __len > __leaf_end) {
115 __buf_start_pos = __leaf_end - __len;
118 if (__buf_start_pos + __len > __leaf_end) {
119 __len = __leaf_end - __buf_start_pos;
121 (*__fn)(__buf_start_pos - __leaf_pos, __len, __x._M_tmp_buf._M_data);
124 __x._M_buf_end = __x._M_tmp_buf._M_data + __len;
212 size_t __len = __current_node->_M_size._M_data local
825 size_t __len = __end - __begin; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
basic_string.h 911 const size_type __len = 1 + this->size(); local
912 if (__len > this->capacity() || _M_rep()->_M_is_shared())
913 this->reserve(__len);
915 _M_rep()->_M_set_length_and_sharable(__len);
2026 const size_type __len = std::min(__size, __osize); local
    [all...]
stl_algo.h 885 _DistanceType __len = std::distance(__first, __last); local
889 while (__len > 0)
891 __half = __len >> 1;
898 __len = __len - __half - 1;
901 __len = __half;
2471 _DistanceType __len = std::distance(__first, __last); local
2524 _DistanceType __len = std::distance(__first, __last); local
2571 _DistanceType __len = std::distance(__first, __last); local
2624 _DistanceType __len = std::distance(__first, __last); local
2679 _DistanceType __len = std::distance(__first, __last); local
2746 _DistanceType __len = std::distance(__first, __last); local
3350 const _Distance __len = __last - __first; local
3374 const _Distance __len = __last - __first; local
3398 const _Distance __len = (__last - __first + 1) \/ 2; local
3426 const _Distance __len = (__last - __first + 1) \/ 2; local
    [all...]
stl_deque.h 1027 const size_type __len = size(); local
1523 const size_type __len = std::distance(__first, __last); local
    [all...]
stl_tree.h 1505 unsigned int __len = _Rb_tree_black_count(_M_leftmost(), _M_root()); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
bitmap_allocator.h 258 _DistanceType __len = __last - __first; local
262 while (__len > 0)
264 __half = __len >> 1;
271 __len = __len - __half - 1;
274 __len = __half;
ropeimpl.h 84 size_t __len = _S_iterator_buf_len; local
89 if (__buf_start_pos + __len <= __pos)
91 __buf_start_pos = __pos - __len / 4;
92 if (__buf_start_pos + __len > __leaf_end)
93 __buf_start_pos = __leaf_end - __len;
95 if (__buf_start_pos + __len > __leaf_end)
96 __len = __leaf_end - __buf_start_pos;
97 (*__fn)(__buf_start_pos - __leaf_pos, __len, __x._M_tmp_buf);
100 __x._M_buf_end = __x._M_tmp_buf + __len;
194 size_t __len = __current_node->_M_size local
959 size_t __len = __end - __begin; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
basic_string.h 1045 const size_type __len = 1 + this->size(); local
2177 const size_type __len = std::min(__size, __osize); local
    [all...]
stl_bvector.h 967 const size_type __len = std::distance(__first, __last); local
968 if (__len < size())
1026 const size_type __len = size() + std::max(size(), __n); local
1027 return (__len < size() || __len > max_size()) ? max_size() : __len;
stl_deque.h 1135 const size_type __len = size(); local
1157 const size_type __len = size(); local
1179 const size_type __len = size(); local
1686 const size_type __len = std::distance(__first, __last); local
    [all...]
stl_tree.h 1620 unsigned int __len = _Rb_tree_black_count(_M_leftmost(), _M_root()); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
bitmap_allocator.h 246 _DistanceType __len = __last - __first; local
250 while (__len > 0)
252 __half = __len >> 1;
259 __len = __len - __half - 1;
262 __len = __half;

Completed in 1137 milliseconds

1 2 3 4 56 7 8