Home
last modified time | relevance | path

Searched refs:new_next (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Python/
Dtraceback.c108 tb_next_set(PyTracebackObject *self, PyObject *new_next, void *Py_UNUSED(_)) in tb_next_set() argument
110 if (!new_next) { in tb_next_set()
117 if (new_next == Py_None) { in tb_next_set()
118 new_next = NULL; in tb_next_set()
119 } else if (!PyTraceBack_Check(new_next)) { in tb_next_set()
122 Py_TYPE(new_next)->tp_name); in tb_next_set()
127 PyTracebackObject *cursor = (PyTracebackObject *)new_next; in tb_next_set()
137 Py_XINCREF(new_next); in tb_next_set()
138 self->tb_next = (PyTracebackObject *)new_next; in tb_next_set()
/third_party/boost/boost/lockfree/
Dqueue.hpp124 tagged_node_handle new_next (null_handle, old_next.get_next_tag()); in BOOST_ALIGNMENT() local
125 next.store(new_next, memory_order_release); in BOOST_ALIGNMENT()