HomeSort by relevance Sort by last modified time
    Searched refs:__len (Results 101 - 125 of 195) sorted by null

1 2 3 45 6 7 8

  /external/stlport/stlport/stl/
_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...]
_slist.c 106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
108 while (__cur->_M_next != 0 && __len > 0) {
109 --__len;
115 _M_insert_after_fill(__cur, __len, __x);
_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...]
_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;
_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/cxx-stl/stlport/stlport/stl/
_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...]
_slist.c 106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
108 while (__cur->_M_next != 0 && __len > 0) {
109 --__len;
115 _M_insert_after_fill(__cur, __len, __x);
_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...]
_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;
_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...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_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...]
_slist.c 106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
108 while (__cur->_M_next != 0 && __len > 0) {
109 --__len;
115 _M_insert_after_fill(__cur, __len, __x);
_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...]
_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;
_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...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_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...]
_slist.c 106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) {
108 while (__cur->_M_next != 0 && __len > 0) {
109 --__len;
115 _M_insert_after_fill(__cur, __len, __x);
_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...]
_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;
_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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 568 extern size_t confstr (int __name, char *__buf, size_t __len) __THROW;
776 char *__restrict __buf, size_t __len)
787 char *__restrict __buf, size_t __len)
845 extern int gethostname (char *__name, size_t __len) __THROW __nonnull ((1));
852 extern int sethostname (__const char *__name, size_t __len)
863 extern int getdomainname (char *__name, size_t __len)
865 extern int setdomainname (__const char *__name, size_t __len)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
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...]
locale_facets.h 112 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len)
114 __s._M_put(__ws, __len);
122 __write(_OutIter __s, const _CharT* __ws, int __len)
124 for (int __j = 0; __j < __len; __j++, ++__s)
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
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...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
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...]

Completed in 958 milliseconds

1 2 3 45 6 7 8