Searched refs:old_head (Results 1 - 10 of 10) sorted by relevance
/third_party/mesa3d/src/util/ |
H A D | sparse_array.c | 250 uint64_t current_head, old_head; in util_sparse_array_free_list_push() local 251 old_head = p_atomic_read(&fl->head); in util_sparse_array_free_list_push() 253 current_head = old_head; in util_sparse_array_free_list_push() 256 old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_push() 257 } while (old_head != current_head); in util_sparse_array_free_list_push() 274 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_pop_idx() local 275 if (old_head == current_head) in util_sparse_array_free_list_pop_idx() 277 current_head = old_head; in util_sparse_array_free_list_pop_idx() 295 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_pop_elem() local 296 if (old_head in util_sparse_array_free_list_pop_elem() [all...] |
/third_party/libuv/src/win/ |
H A D | loop-watcher.c | 48 uv_##name##_t* old_head; \ 58 old_head = loop->name##_handles; \ 60 handle->name##_next = old_head; \ 63 if (old_head) { \ 64 old_head->name##_prev = handle; \
|
/third_party/node/deps/uv/src/win/ |
H A D | loop-watcher.c | 48 uv_##name##_t* old_head; \ 58 old_head = loop->name##_handles; \ 60 handle->name##_next = old_head; \ 63 if (old_head) { \ 64 old_head->name##_prev = handle; \
|
/third_party/googletest/googletest/samples/ |
H A D | sample3-inl.h | 134 const QueueNode<E>* const old_head = head_; in Dequeue() local 141 E* element = new E(old_head->element()); in Dequeue() 142 delete old_head; in Dequeue()
|
/third_party/node/deps/v8/src/utils/ |
H A D | locked-queue-inl.h | 56 Node* old_head = nullptr; in Dequeue() local 59 old_head = head_; in Dequeue() 68 delete old_head; in Dequeue()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_bo.c | 361 struct list_head *old_head = &cache->size_list[i]; in reallocate_size_list() local 362 if (list_is_empty(old_head)) { in reallocate_size_list() 365 new_list[i].next = old_head->next; in reallocate_size_list() 366 new_list[i].prev = old_head->prev; in reallocate_size_list()
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_bufmgr.c | 294 struct list_head *old_head = &cache->size_list[i]; in v3d_bo_last_unreference_locked_timed() local 295 if (list_is_empty(old_head)) in v3d_bo_last_unreference_locked_timed() 298 new_list[i].next = old_head->next; in v3d_bo_last_unreference_locked_timed() 299 new_list[i].prev = old_head->prev; in v3d_bo_last_unreference_locked_timed()
|
/third_party/spirv-tools/utils/ |
H A D | roll_deps.sh | 52 old_head=$(git rev-parse HEAD)
|
/third_party/node/deps/v8/src/base/ |
H A D | threaded-list.h | 57 T* old_head = head_; in DropHead() local 60 *TLTraits::next(old_head) = nullptr; in DropHead()
|
/third_party/python/Python/ |
H A D | pystate.c | 335 PyInterpreterState *old_head = interpreters->head; in PyInterpreterState_New() local 336 if (old_head == NULL) { in PyInterpreterState_New() 374 init_interpreter(interp, runtime, id, old_head, pending_lock); in PyInterpreterState_New() 826 PyThreadState *old_head = interp->threads.head; in new_threadstate() local 827 if (old_head == NULL) { in new_threadstate() 837 assert(old_head->prev == NULL); in new_threadstate() 850 init_threadstate(tstate, interp, id, old_head); in new_threadstate()
|
Completed in 7 milliseconds