Home
last modified time | relevance | path

Searched refs:set_next (Results 1 – 25 of 44) sorted by relevance

12

/third_party/boost/boost/intrusive/detail/
Dcommon_slist_algorithms.hpp56 { NodeTraits::set_next(this_node, node_ptr()); } in init()
70 NodeTraits::set_next(prev_node, NodeTraits::get_next(this_node)); in unlink_after()
74 { NodeTraits::set_next(prev_node, last_node); } in unlink_after()
78 NodeTraits::set_next(this_node, NodeTraits::get_next(prev_node)); in link_after()
79 NodeTraits::set_next(prev_node, this_node); in link_after()
85 NodeTraits::set_next(bp, b); in incorporate_after()
86 NodeTraits::set_next(be, p); in incorporate_after()
95 NodeTraits::set_next(bb, next_e); in transfer_after()
96 NodeTraits::set_next(be, next_p); in transfer_after()
97 NodeTraits::set_next(bp, next_b); in transfer_after()
[all …]
Dany_node_and_algorithms.hpp55 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next() function
76 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next() function
96 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next() function
Dslist_node.hpp55 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next() function
Dlist_node.hpp65 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next() function
/third_party/boost/boost/intrusive/
Dcircular_list_algorithms.hpp73 NodeTraits::set_next(this_node, null_node); in init()
96 NodeTraits::set_next(this_node, this_node); in init_header()
145 NodeTraits::set_next(prev, next); in unlink()
162 NodeTraits::set_next(prevb, e); in unlink()
177 NodeTraits::set_next(this_node, nxt_node); in link_before()
182 NodeTraits::set_next(prev, this_node); in link_before()
196 NodeTraits::set_next(this_node, next); in link_after()
200 NodeTraits::set_next(prev_node, this_node); in link_after()
261 NodeTraits::set_next(prev_e, p); in transfer()
263 NodeTraits::set_next(prev_b, e); in transfer()
[all …]
Dlinear_slist_algorithms.hpp145 { NodeTraits::set_next(this_node, node_ptr ()); } in init_header()
191 NodeTraits::set_next(this_node, other_nxt); in swap_trailing_nodes()
192 NodeTraits::set_next(other_node, this_nxt); in swap_trailing_nodes()
210 NodeTraits::set_next(i, first); in reverse()
265 NodeTraits::set_next(old_last, p); in move_first_n_backwards()
266 NodeTraits::set_next(new_last, node_ptr()); in move_first_n_backwards()
319 NodeTraits::set_next(old_last, p); in move_first_n_forward()
320 NodeTraits::set_next(new_last, node_ptr()); in move_first_n_forward()
Dcircular_slist_algorithms.hpp145 { NodeTraits::set_next(this_node, this_node); } in init_header()
264 …NodeTraits::set_next(this_next == other_node ? other_node : get_previous_node(other_node), this_no… in swap_nodes()
267 …NodeTraits::set_next(other_next == this_node ? this_node : get_previous_node(this_node), other_no… in swap_nodes()
269 …NodeTraits::set_next(this_node, other_empty ? this_node : (other_next == this_node ? other_node … in swap_nodes()
270 …NodeTraits::set_next(other_node, this_empty ? other_node : (this_next == other_node ? this_node :… in swap_nodes()
Dunordered_set_hook.hpp88 BOOST_INTRUSIVE_FORCEINLINE static void set_next(node_ptr n, node_ptr next) in set_next() function
114 static void set_next(node_ptr n, node_ptr next) in set_next() function
/third_party/boost/libs/log/src/
Dthreadsafe_queue.cpp75 set_next(first_node, NULL); in threadsafe_queue_impl_generic()
98 set_next(p, NULL); in push()
100 set_next(m_Tail.node, p); in push()
120 BOOST_FORCEINLINE static void set_next(node_base* p, node_base* next) in set_next() function in boost::aux::threadsafe_queue_impl_generic
/third_party/boost/boost/circular_buffer/
Ddebug.hpp101 void set_next(const debug_iterator_base* it) const;
135 it->set_next(m_iterators); in register_iterator()
193 previous->set_next(current->next()); in remove()
230 inline void debug_iterator_base::set_next(const debug_iterator_base* it) const { m_next = it; } in set_next() function in boost::cb_details::debug_iterator_base
/third_party/node/src/
Dcallback_queue-inl.h37 prev_tail->set_next(std::move(cb)); in Push()
46 tail_->set_next(std::move(other.head_)); in ConcatMove()
75 void CallbackQueue<R, Args...>::Callback::set_next( in set_next() function
Dcallback_queue.h37 inline void set_next(std::unique_ptr<Callback> next);
/third_party/boost/boost/iostreams/
Dchain.hpp270 if (prev) prev->set_next(list().back()); in push_impl()
288 static void set_next(streambuf_type* b, streambuf_type* next) in set_next() function in boost::iostreams::detail::chain_base
289 { b->set_next(next); } in set_next()
331 set_next(links_.back(), &null); in close()
582 buf->set_next(0); in pop()
/third_party/node/tools/inspector_protocol/jinja2/
Ddebug.py47 def set_next(self, next): member in TracebackFrameProxy
93 prev_tb.set_next(tb)
95 prev_tb.set_next(None)
/third_party/openssl/crypto/x509/
Dx509name.c99 int i, n, set_prev, set_next; in X509_NAME_delete_entry() local
118 set_next = sk_X509_NAME_ENTRY_value(sk, loc)->set; in X509_NAME_delete_entry()
130 if (set_prev + 1 < set_next) in X509_NAME_delete_entry()
/third_party/python/Lib/idlelib/
Ddebugger_r.py86 def set_next(self, fid): member in IdbAdapter
88 self.idb.set_next(frame)
325 def set_next(self, frame): member in IdbProxy
/third_party/boost/libs/intrusive/example/
Ddoc_slist_algorithms.cpp29 static void set_next(node_ptr n, node_ptr next) { n->next_ = next; } in set_next() function
Ddoc_list_algorithms.cpp29 static void set_next(node_ptr n, node_ptr next) { n->next_ = next; } in set_next() function
Ddoc_derivation_value_traits.cpp30 static void set_next(node *n, node *next) { n->next_ = next; } in set_next() function
Ddoc_member_value_traits.cpp30 static void set_next(node *n, node *next) { n->next_ = next; } in set_next() function
Ddoc_value_traits.cpp46 static void set_next(node *n, node *next) { n->next_ = next; } in set_next() function
/third_party/grpc/src/core/lib/channel/
Dchannel_trace.h105 void set_next(TraceEvent* next) { next_ = next; } in set_next() function
/third_party/boost/boost/iostreams/detail/streambuf/
Dlinked_streambuf.hpp89 virtual void set_next(linked_streambuf<Ch, Tr>* /* next */) { } in set_next() function in boost::iostreams::detail::linked_streambuf
/third_party/python/Objects/
Dsetobject.c459 set_next(PySetObject *so, Py_ssize_t *pos_ptr, setentry **entry_ptr) in set_next() function
663 while (set_next(so, &pos, &entry)) in set_traverse()
1204 while (set_next((PySetObject *)other, &pos, &entry)) { in set_intersection()
1356 while (set_next((PySetObject *)other, &pos, &entry)) { in set_isdisjoint()
1420 while (set_next((PySetObject *)other, &pos, &entry)) in set_difference_update_internal()
1512 while (set_next(so, &pos, &entry)) { in set_difference()
1531 while (set_next(so, &pos, &entry)) { in set_difference()
1638 while (set_next(otherset, &pos, &entry)) { in set_symmetric_difference_update()
1725 while (set_next(so, &pos, &entry)) { in set_issubset()
2310 if (set_next((PySetObject *)set, pos, &entry) == 0) in _PySet_NextEntry()
/third_party/boost/boost/container/detail/
Dblock_slist.hpp54 static void set_next(const node_ptr & n, const node_ptr & next) in set_next() function

12