Searched defs:__next (Results 1 - 15 of 15) sorted by relevance

/external/stlport/stlport/stl/
H A D_slist_base.c79 _Slist_node_base* __next = __node->_M_next; local
82 __node = __next;
H A D_list.c144 _Literator __next = __first; local
145 ++__next;
147 __first = __next;
157 _Literator __next = __first;
158 while (++__next != __last) {
159 if (__binary_pred(*__first, *__next))
160 __that.erase(__next);
162 __first = __next;
163 __next = __first;
179 _Literator __next local
[all...]
H A D_algo.h87 _ForwardIter __next = __first;
88 while(++__next != __last) {
89 if (__binary_pred(*__first, *__next))
91 __first = __next;
271 _ForwardIter __next = __first; local
272 return remove_copy(++__next, __last, __first, __val);
284 _ForwardIter __next = __first; local
285 return remove_copy_if(++__next, __last, __first, __pred);
H A D_deque.c245 iterator __next = __pos; local
246 ++__next;
249 copy_backward(this->_M_start, __pos, __next);
253 _STLP_STD::copy(__next, this->_M_finish, __pos);
H A D_num_get.c151 _Integer __next = __STATIC_CAST(_Integer, __base * __result - __n); local
153 __ovflow = __ovflow || __next >= __result;
154 __result = __next;
214 _Integer __next = __STATIC_CAST(_Integer, __base * __result + __n); local
216 __ovflow = __ovflow || __next <= __result;
217 __result = __next;
H A D_list.h638 iterator __next = __first; local
639 ++__next;
641 __first = __next;
H A D_slist.h174 _Node* __next = __STATIC_CAST(_Node*, __pos->_M_next); local
175 _Slist_node_base* __next_next = __next->_M_next;
177 _STLP_STD::_Destroy(&__next->_M_data);
178 _M_head.deallocate(__next,1);
H A D_algo.c685 _ForwardIter __next = __first;
687 while (++__next != __last) {
688 if (__pred(*__next)) {
689 _STLP_STD::swap(*__first, *__next);
909 _RandomAccessIter __next = __last; local
910 --__next;
911 while (__comp(__val, *__next)) {
912 _STLP_VERBOSE_ASSERT(!__comp(*__next, __val), _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
913 *__last = *__next;
914 __last = __next;
[all...]
H A D_rope.h920 _CharT *__next = this->_M_buf_ptr + 1; local
921 if ( __next < this->_M_buf_end ) {
922 this->_M_buf_ptr = __next;
/external/valgrind/main/none/tests/s390x/
H A Dsrst.c11 static char * srst3(char *__next, char *__start, char __what, int *__cc) argument
14 register char *next asm ("2") = __next;
/external/stlport/stlport/stl/debug/
H A D_list.h342 _Base_iterator __next = __first; local
343 ++__next;
348 __first = __next;
418 _Base_iterator __next = __first;
419 while (++__next != __last) {
420 if (*__first == *__next) {
421 _Invalidate_iterator(iterator(&_M_iter_list, __next));
422 _M_non_dbg_impl.erase(__next);
425 __first = __next;
426 __next
438 _Base_iterator __next = __first; local
[all...]
H A D_debug.c542 __owned_link* __prev, *__next; local
544 for (__prev = &__l->_M_node; (__next = __prev->_M_next) != __c_node;
545 __prev = __next) {
546 _STLP_ASSERT(__next && __next->_Owner() == __l)
H A D_slist.h505 _Base_iterator __next = __first; local
506 ++__next;
511 __first = __next;
517 _Base_iterator __next = __first;
518 while (++__next != __last) {
519 if (*__first == *__next) {
520 _Invalidate_iterator(iterator(&_M_iter_list, __next));
521 _M_non_dbg_impl.erase(__next);
524 __first = __next;
525 __next
554 _Base_iterator __next = __first; local
[all...]
/external/stlport/src/
H A Dallocators.cpp683 _Obj* __next = __chunk->_M_next; local
685 __chunk = __next;
774 _Pthread_alloc_per_thread_state() : __next(0)
780 _Pthread_alloc_per_thread_state *__next; member in struct:_Pthread_alloc_per_thread_state
887 __s -> __next = _S_free_per_thread_states;
895 _S_free_per_thread_states = _S_free_per_thread_states -> __next;
/external/valgrind/main/perf/
H A Dtest_input_for_tinycc.c4980 struct __gconv_trans_data *__next; member in struct:__gconv_trans_data

Completed in 1205 milliseconds