/external/stlport/stlport/stl/ |
D | _list.c | 144 _Literator __next = __first; in _S_remove_if() local 145 ++__next; in _S_remove_if() 147 __first = __next; in _S_remove_if() 157 _Literator __next = __first; in _S_unique() local 158 while (++__next != __last) { in _S_unique() 159 if (__binary_pred(*__first, *__next)) in _S_unique() 160 __that.erase(__next); in _S_unique() 162 __first = __next; in _S_unique() 163 __next = __first; in _S_unique() 179 _Literator __next = __first2; in _S_merge() [all …]
|
D | _slist_base.c | 79 _Slist_node_base* __next = __node->_M_next; in __reverse() local 82 __node = __next; in __reverse()
|
D | _num_get.c | 151 _Integer __next = __STATIC_CAST(_Integer, __base * __result - __n); in __get_integer() local 153 __ovflow = __ovflow || __next >= __result; in __get_integer() 154 __result = __next; in __get_integer() 214 _Integer __next = __STATIC_CAST(_Integer, __base * __result + __n); in __get_integer() local 216 __ovflow = __ovflow || __next <= __result; in __get_integer() 217 __result = __next; in __get_integer()
|
D | _algo.h | 87 _ForwardIter __next = __first; in adjacent_find() local 88 while(++__next != __last) { in adjacent_find() 89 if (__binary_pred(*__first, *__next)) in adjacent_find() 91 __first = __next; in adjacent_find() 271 _ForwardIter __next = __first; in remove() local 272 return remove_copy(++__next, __last, __first, __val); in remove() 284 _ForwardIter __next = __first; in remove_if() local 285 return remove_copy_if(++__next, __last, __first, __pred); in remove_if()
|
D | _algo.c | 685 _ForwardIter __next = __first; in __partition() local 687 while (++__next != __last) { in __partition() 688 if (__pred(*__next)) { in __partition() 689 _STLP_STD::swap(*__first, *__next); in __partition() 909 _RandomAccessIter __next = __last; in __unguarded_linear_insert() local 910 --__next; in __unguarded_linear_insert() 911 while (__comp(__val, *__next)) { in __unguarded_linear_insert() 912 _STLP_VERBOSE_ASSERT(!__comp(*__next, __val), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) in __unguarded_linear_insert() 913 *__last = *__next; in __unguarded_linear_insert() 914 __last = __next; in __unguarded_linear_insert() [all …]
|
D | _slist.h | 174 _Node* __next = __STATIC_CAST(_Node*, __pos->_M_next); 175 _Slist_node_base* __next_next = __next->_M_next; 177 _STLP_STD::_Destroy(&__next->_M_data); 178 _M_head.deallocate(__next,1);
|
D | _list.h | 638 iterator __next = __first; 639 ++__next; 641 __first = __next;
|
D | _deque.c | 245 iterator __next = __pos; in _M_erase() local 246 ++__next; in _M_erase() 249 copy_backward(this->_M_start, __pos, __next); in _M_erase() 253 _STLP_STD::copy(__next, this->_M_finish, __pos); in _M_erase()
|
D | _rope.h | 920 _CharT *__next = this->_M_buf_ptr + 1; 921 if ( __next < this->_M_buf_end ) { 922 this->_M_buf_ptr = __next;
|
/external/stlport/stlport/stl/debug/ |
D | _list.h | 342 _Base_iterator __next = __first; in remove() local 343 ++__next; in remove() 348 __first = __next; in remove() 418 _Base_iterator __next = __first; in unique() local 419 while (++__next != __last) { in unique() 420 if (*__first == *__next) { in unique() 421 _Invalidate_iterator(iterator(&_M_iter_list, __next)); in unique() 422 _M_non_dbg_impl.erase(__next); in unique() 425 __first = __next; in unique() 426 __next = __first; in unique() [all …]
|
D | _slist.h | 505 _Base_iterator __next = __first; in remove() local 506 ++__next; in remove() 511 __first = __next; in remove() 517 _Base_iterator __next = __first; in unique() local 518 while (++__next != __last) { in unique() 519 if (*__first == *__next) { in unique() 520 _Invalidate_iterator(iterator(&_M_iter_list, __next)); in unique() 521 _M_non_dbg_impl.erase(__next); in unique() 524 __first = __next; in unique() 525 __next = __first; in unique() [all …]
|
D | _debug.c | 542 __owned_link* __prev, *__next; in _M_detach() local 544 for (__prev = &__l->_M_node; (__next = __prev->_M_next) != __c_node; in _M_detach() 545 __prev = __next) { in _M_detach() 546 _STLP_ASSERT(__next && __next->_Owner() == __l) in _M_detach()
|
/external/mesa3d/src/glsl/ |
D | list.h | 475 for (exec_node * __node = (__list)->head, * __next = __node->next \ 476 ; __next != NULL \ 477 ; __node = __next, __next = __next->next)
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
D | list.h | 475 for (exec_node * __node = (__list)->head, * __next = __node->next \ 476 ; __next != NULL \ 477 ; __node = __next, __next = __next->next)
|
/external/valgrind/main/none/tests/s390x/ |
D | srst.c | 11 static char * srst3(char *__next, char *__start, char __what, int *__cc) in srst3() argument 14 register char *next asm ("2") = __next; in srst3()
|
/external/libcxx/include/ |
D | __debug | 51 __i_node(void* __i, __i_node* __next, __c_node* __c) 52 : __i_(__i), __next_(__next), __c_(__c) {} 74 __c_node(void* __c, __c_node* __next) 75 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {}
|
D | __tree | 1224 __node_pointer __next = __detach(__cache); 1226 __cache = __next; 1264 __node_pointer __next = __detach(__cache); 1266 __cache = __next; 1388 __node_pointer __next = __detach(__cache); 1390 __cache = __next; 1682 const_iterator __next = _VSTD::next(__hint); 1683 if (__next == end() || value_comp()(__v, *__next)) 1693 __parent = static_cast<__node_base_pointer>(__next.__ptr_);
|
D | forward_list | 542 __node_pointer __next = __p->__next_; 545 __p = __next; 1166 __node_pointer __next = __first->__next_; 1169 __first = __next; 1216 __node_pointer __next = __first->__next_; 1219 __first = __next;
|
D | __hash_table | 1331 __node_pointer __next = __np->__next_; 1349 __np = __next; 1422 __node_pointer __next = __cache->__next_; 1424 __cache = __next; 1480 __node_pointer __next = __cache->__next_; 1482 __cache = __next; 1514 __node_pointer __next = __cache->__next_; 1516 __cache = __next;
|
D | regex | 2302 const _CharT* __next = _VSTD::next(__s.__current_); 2303 if (__next != __s.__last_) 2305 pair<_CharT, _CharT> __ch2(*__s.__current_, *__next);
|
/external/stlport/src/ |
D | allocators.cpp | 683 _Obj* __next = __chunk->_M_next; in _S_chunk_dealloc() local 685 __chunk = __next; in _S_chunk_dealloc() 774 _Pthread_alloc_per_thread_state() : __next(0) in _Pthread_alloc_per_thread_state() 780 _Pthread_alloc_per_thread_state *__next; member 887 __s -> __next = _S_free_per_thread_states; in _S_destructor() 895 _S_free_per_thread_states = _S_free_per_thread_states -> __next; in _S_new_per_thread_state()
|
/external/valgrind/main/perf/ |
D | test_input_for_tinycc.c | 4980 struct __gconv_trans_data *__next; member
|