Searched refs:__curr (Results 1 – 8 of 8) sorted by relevance
66 _Node* __curr = static_cast<_Node*>(__pos->_M_next); in _M_erase_after() local67 __pos->_M_next = __curr->_M_next; in _M_erase_after()69 __curr->_M_valptr()); in _M_erase_after()70 __curr->~_Node(); in _M_erase_after()71 _M_put_node(__curr); in _M_erase_after()81 _Node* __curr = static_cast<_Node*>(__pos->_M_next); in _M_erase_after() local82 while (__curr != __last) in _M_erase_after()84 _Node* __temp = __curr; in _M_erase_after()85 __curr = static_cast<_Node*>(__curr->_M_next); in _M_erase_after()293 _Node_base* __curr = &this->_M_impl._M_head; in remove() local[all …]
1353 auto __curr = begin(); in _GLIBCXX_VISIBILITY() local1355 while (__curr != __end && __first != __last) in _GLIBCXX_VISIBILITY()1357 *__curr = *__first; in _GLIBCXX_VISIBILITY()1359 ++__curr; in _GLIBCXX_VISIBILITY()1364 else if (__curr != __end) in _GLIBCXX_VISIBILITY()1383 auto __curr = begin(); in _GLIBCXX_VISIBILITY() local1385 while (__curr != __end && __n > 0) in _GLIBCXX_VISIBILITY()1387 *__curr = __val; in _GLIBCXX_VISIBILITY()1389 ++__curr; in _GLIBCXX_VISIBILITY()1394 else if (__curr != __end) in _GLIBCXX_VISIBILITY()
185 _S_adjust(_Vector_impl& __impl, pointer __prev, pointer __curr) in _GLIBCXX_VISIBILITY()188 __impl._M_end_of_storage, __prev, __curr); in _GLIBCXX_VISIBILITY()
39 extern struct task_struct *__curr(void);41 #define current (__curr())
20 struct task_struct *__curr(void) in __curr() function