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

1 2

  /ndk/sources/cxx-stl/stlport/stlport/stl/
_threads.c 61 unsigned _STLP_mutex_spin<__inst>::__last = 0; member in class:__inst
122 unsigned __my_last_spins = _STLP_mutex_spin<0>::__last;
136 _STLP_mutex_spin<0>::__last = __i; member in class:_STLP_mutex_spin
_uninitialized.h 52 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
56 for ( ; __first != __last; ++__first, ++__cur)
65 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
67 { return __ucopy(__first, __last, __result, __d); }
71 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
73 { return __ucopy(__first, __last, __result, __d); }
76 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
78 { return __ucopy(__first, __last, __result, __d); }
82 inline _OutputIter __ucopy(_RandomAccessIter __first, _RandomAccessIter __last,
86 for (_Distance __n = __last - __first; __n > 0; --__n)
194 _RandomAccessIter __last = __first + __count; local
314 _ForwardIter __last = __first + __n; local
    [all...]
_list.c 49 _List_node_base* __first, _List_node_base* __last) {
50 if (__position != __last) {
52 __last->_M_prev->_M_next = __position;
53 __first->_M_prev->_M_next = __last;
58 __position->_M_prev = __last->_M_prev;
59 __last->_M_prev = __first->_M_prev;
142 _Literator __last = __that.end(); local
143 while (__first != __last) {
155 _Literator __last = __that.end(); local
156 if (__first == __last) return
    [all...]
_algobase.h 184 inline _OutputIter __copy(_InputIter __first, _InputIter __last,
186 for ( ; __first != __last; ++__result, ++__first)
193 inline _OutputIter __copy(_InputIter __first, _InputIter __last,
195 for ( ; __first != __last; ++__result, ++__first)
201 inline _OutputIter __copy(_InputIter __first, _InputIter __last,
203 for ( ; __first != __last; ++__result, ++__first)
211 __copy(_RandomAccessIter __first, _RandomAccessIter __last,
213 for (_Distance __n = __last - __first; __n > 0; --__n) {
222 __copy_trivial(const void* __first, const void* __last, void* __result) {
223 size_t __n = (const char*)__last - (const char*)__first
391 _RAIter __last = __first + __count; local
    [all...]
_hashtable.c 72 const size_t* __last = __first + __size; local
73 const size_t* pos = __lower_bound(__first, __last, __n,
75 return (pos == __last ? *(__last - 1) : *pos);
83 const size_t* __last = __begin + __size; local
84 __pos = __lower_bound(__begin, __last, __n,
87 if (__pos== __last)
202 _ElemsIte __last(_M_buckets[__n + 1]);
204 if (__cur != __last) {
205 for (; __cur != __last; ++__cur)
    [all...]
_string.c 196 basic_string<_CharT, _Traits, _Alloc>::_M_append(const _CharT* __first, const _CharT* __last) {
197 if (__first != __last) {
198 size_type __n = __STATIC_CAST(size_type, __last - __first);
203 __new_finish = _STLP_PRIV __ucopy(__first, __last, __new_finish);
211 _STLP_PRIV __ucopy(__f1, __last, this->_M_finish + 1);
315 const _CharT* __first, const _CharT* __last,
318 if (__first != __last) {
319 const size_t __n = __last - __first;
327 if (!__self_ref || __last < __pos) {
328 _M_copy(__first, __last, __pos)
458 const_pointer __last = this->_M_Start() + (min)( __len - __n, __pos) + __n; local
474 const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
503 const const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
547 const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
565 const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
    [all...]
_threads.h 255 static unsigned __last; member in struct:_STLP_mutex_spin
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_threads.c 61 unsigned _STLP_mutex_spin<__inst>::__last = 0; member in class:__inst
122 unsigned __my_last_spins = _STLP_mutex_spin<0>::__last;
136 _STLP_mutex_spin<0>::__last = __i; member in class:_STLP_mutex_spin
_uninitialized.h 52 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
56 for ( ; __first != __last; ++__first, ++__cur)
65 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
67 { return __ucopy(__first, __last, __result, __d); }
71 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
73 { return __ucopy(__first, __last, __result, __d); }
76 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last,
78 { return __ucopy(__first, __last, __result, __d); }
82 inline _OutputIter __ucopy(_RandomAccessIter __first, _RandomAccessIter __last,
86 for (_Distance __n = __last - __first; __n > 0; --__n)
194 _RandomAccessIter __last = __first + __count; local
314 _ForwardIter __last = __first + __n; local
    [all...]
_list.c 49 _List_node_base* __first, _List_node_base* __last) {
50 if (__position != __last) {
52 __last->_M_prev->_M_next = __position;
53 __first->_M_prev->_M_next = __last;
58 __position->_M_prev = __last->_M_prev;
59 __last->_M_prev = __first->_M_prev;
142 _Literator __last = __that.end(); local
143 while (__first != __last) {
155 _Literator __last = __that.end(); local
156 if (__first == __last) return
    [all...]
_algobase.h 184 inline _OutputIter __copy(_InputIter __first, _InputIter __last,
186 for ( ; __first != __last; ++__result, ++__first)
193 inline _OutputIter __copy(_InputIter __first, _InputIter __last,
195 for ( ; __first != __last; ++__result, ++__first)
201 inline _OutputIter __copy(_InputIter __first, _InputIter __last,
203 for ( ; __first != __last; ++__result, ++__first)
211 __copy(_RandomAccessIter __first, _RandomAccessIter __last,
213 for (_Distance __n = __last - __first; __n > 0; --__n) {
222 __copy_trivial(const void* __first, const void* __last, void* __result) {
223 size_t __n = (const char*)__last - (const char*)__first
391 _RAIter __last = __first + __count; local
    [all...]
_hashtable.c 72 const size_t* __last = __first + __size; local
73 const size_t* pos = __lower_bound(__first, __last, __n,
75 return (pos == __last ? *(__last - 1) : *pos);
83 const size_t* __last = __begin + __size; local
84 __pos = __lower_bound(__begin, __last, __n,
87 if (__pos== __last)
202 _ElemsIte __last(_M_buckets[__n + 1]);
204 if (__cur != __last) {
205 for (; __cur != __last; ++__cur)
    [all...]
_string.c 196 basic_string<_CharT, _Traits, _Alloc>::_M_append(const _CharT* __first, const _CharT* __last) {
197 if (__first != __last) {
198 size_type __n = __STATIC_CAST(size_type, __last - __first);
203 __new_finish = _STLP_PRIV __ucopy(__first, __last, __new_finish);
211 _STLP_PRIV __ucopy(__f1, __last, this->_M_finish + 1);
315 const _CharT* __first, const _CharT* __last,
318 if (__first != __last) {
319 const size_t __n = __last - __first;
327 if (!__self_ref || __last < __pos) {
328 _M_copy(__first, __last, __pos)
458 const_pointer __last = this->_M_Start() + (min)( __len - __n, __pos) + __n; local
474 const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
503 const const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
547 const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
565 const_iterator __last = begin() + (min)(__len - 1, __pos) + 1; local
    [all...]
_threads.h 255 static unsigned __last; member in struct:_STLP_mutex_spin
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 85 void _Invalidate_iterators(const iterator& __first, const iterator& __last)
86 { _STLP_PRIV __invalidate_range(&_M_iter_list, __first, __last); }
121 list(_InputIterator __first, _InputIterator __last,
123 : _ConstructCheck(__first, __last),
124 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a),
128 list(_InputIterator __first, _InputIterator __last)
129 : _ConstructCheck(__first, __last),
130 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last)),
135 list(const value_type* __first, const value_type* __last,
137 : _ConstructCheck(__first, __last),
340 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
416 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
436 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
450 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
    [all...]
_slist.h 101 void _Invalidate_iterators(const iterator& __first, const iterator& __last)
102 { _STLP_PRIV __invalidate_range(&_M_iter_list, __first, __last); }
138 slist(_InputIterator __first, _InputIterator __last,
140 : _ConstructCheck(__first, __last),
141 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a),
145 slist(_InputIterator __first, _InputIterator __last)
146 : _ConstructCheck(__first, __last),
147 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last)),
152 slist(const value_type* __first, const value_type* __last,
154 : _ConstructCheck(__first, __last),
443 iterator __last = __before_last; ++__last; local
503 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
515 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
552 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
566 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_vector.h 133 vector(_InputIterator __first, _InputIterator __last,
135 : _M_impl(__first, __last,
140 vector(_InputIterator __first, _InputIterator __last)
141 : _M_impl(__first, __last) {}
145 vector(const_iterator __first, const_iterator __last,
147 : _M_impl(cast_traits::to_storage_type_cptr(__first), cast_traits::to_storage_type_cptr(__last),
159 void assign(_InputIterator __first, _InputIterator __last)
160 { _M_impl.assign(__first, __last); }
162 void assign(const_iterator __first, const_iterator __last) {
164 cast_traits::to_storage_type_cptr(__last));
197 { _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __first, __last); } local
    [all...]
_deque.h 178 deque(_InputIterator __first, _InputIterator __last,
181 : _M_impl(__first, __last,
187 insert(end(), __first, __last); local
193 deque(_InputIterator __first, _InputIterator __last)
195 : _M_impl(__first, __last) {}
197 { insert(end(), __first, __last); }
202 deque(const_pointer __first, const_pointer __last,
205 cast_traits::to_storage_type_cptr(__last),
208 deque(const_iterator __first, const_iterator __last,
211 ite_cast_traits::to_storage_type_cite(__last),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_bvector.h 383 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
385 for (; __first != __last; ++__first)
390 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
392 if (__first._M_p != __last._M_p)
394 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
396 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
399 __fill_bvector(__first, __last, __x);
606 vector(_InputIterator __first, _InputIterator __last,
609 { _M_initialize_dispatch(__first, __last, __false_type());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_bvector.h 383 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
385 for (; __first != __last; ++__first)
390 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
392 if (__first._M_p != __last._M_p)
394 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
396 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
399 __fill_bvector(__first, __last, __x);
606 vector(_InputIterator __first, _InputIterator __last,
609 { _M_initialize_dispatch(__first, __last, __false_type());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_bvector.h 383 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
385 for (; __first != __last; ++__first)
390 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
392 if (__first._M_p != __last._M_p)
394 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
396 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
399 __fill_bvector(__first, __last, __x);
606 vector(_InputIterator __first, _InputIterator __last,
609 { _M_initialize_dispatch(__first, __last, __false_type());
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_bvector.h 391 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
393 for (; __first != __last; ++__first)
398 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
400 if (__first._M_p != __last._M_p)
402 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
404 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x); local
407 __fill_bvector(__first, __last, __x);
634 vector(_InputIterator __first, _InputIterator __last,
637 { _M_initialize_dispatch(__first, __last, __false_type());
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 85 void _Invalidate_iterators(const iterator& __first, const iterator& __last)
86 { _STLP_PRIV __invalidate_range(&_M_iter_list, __first, __last); }
121 list(_InputIterator __first, _InputIterator __last,
123 : _ConstructCheck(__first, __last),
124 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a),
128 list(_InputIterator __first, _InputIterator __last)
129 : _ConstructCheck(__first, __last),
130 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last)),
135 list(const value_type* __first, const value_type* __last,
137 : _ConstructCheck(__first, __last),
340 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
416 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
436 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
450 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
    [all...]
_slist.h 101 void _Invalidate_iterators(const iterator& __first, const iterator& __last)
102 { _STLP_PRIV __invalidate_range(&_M_iter_list, __first, __last); }
138 slist(_InputIterator __first, _InputIterator __last,
140 : _ConstructCheck(__first, __last),
141 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last), __a),
145 slist(_InputIterator __first, _InputIterator __last)
146 : _ConstructCheck(__first, __last),
147 _M_non_dbg_impl(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last)),
152 slist(const value_type* __first, const value_type* __last,
154 : _ConstructCheck(__first, __last),
443 iterator __last = __before_last; ++__last; local
503 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
515 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
552 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
566 _Base_iterator __first = _M_non_dbg_impl.begin(), __last = _M_non_dbg_impl.end(); local
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/pointers/
_vector.h 133 vector(_InputIterator __first, _InputIterator __last,
135 : _M_impl(__first, __last,
140 vector(_InputIterator __first, _InputIterator __last)
141 : _M_impl(__first, __last) {}
145 vector(const_iterator __first, const_iterator __last,
147 : _M_impl(cast_traits::to_storage_type_cptr(__first), cast_traits::to_storage_type_cptr(__last),
159 void assign(_InputIterator __first, _InputIterator __last)
160 { _M_impl.assign(__first, __last); }
162 void assign(const_iterator __first, const_iterator __last) {
164 cast_traits::to_storage_type_cptr(__last));
197 { _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __first, __last); } local
    [all...]

Completed in 1532 milliseconds

1 2