Home
last modified time | relevance | path

Searched refs:new_head (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/util/
Dsparse_array.c255 uint64_t new_head = free_list_head(current_head, items[0]); in util_sparse_array_free_list_push() local
256 old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_push()
273 uint64_t new_head = free_list_head(current_head, p_atomic_read(head_next)); in util_sparse_array_free_list_pop_idx() local
274 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_pop_idx()
294 uint64_t new_head = free_list_head(current_head, p_atomic_read(head_next)); in util_sparse_array_free_list_pop_elem() local
295 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_pop_elem()
/third_party/node/deps/v8/src/base/
Dthreaded-list.h81 T* new_head = list.head_; in Prepend() local
86 head_ = new_head; in Prepend()
/third_party/python/Lib/test/
Dtest_marshal.py244 new_head = marshal.loads(data)
246 self.assertEqual(len(new_head), len(head))
247 self.assertEqual(len(new_head[0]), len(head[0]))
248 self.assertEqual(len(new_head[-1]), len(head[-1]))
/third_party/node/deps/v8/src/execution/
Dfutex-emulation.cc58 FutexWaitListNode* new_head = nullptr; in DeleteNodesForIsolate() local
66 if (new_head == nullptr) { in DeleteNodesForIsolate()
67 new_head = node; in DeleteNodesForIsolate()
73 *head = new_head; in DeleteNodesForIsolate()