Home
last modified time | relevance | path

Searched refs:old_head (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/util/
Dsparse_array.c250 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 == current_head) in util_sparse_array_free_list_pop_elem()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/samples/
Dsample3-inl.h135 const QueueNode<E>* const old_head = head_; in Dequeue() local
142 E* element = new E(old_head->element()); in Dequeue()
143 delete old_head; in Dequeue() local
/external/googletest/googletest/samples/
Dsample3-inl.h135 const QueueNode<E>* const old_head = head_; in Dequeue() local
142 E* element = new E(old_head->element()); in Dequeue()
143 delete old_head; in Dequeue() local
/external/deqp-deps/amber/tools/
Droll-all43 old_head=$(git rev-parse HEAD)
60 git rebase --interactive "${old_head}"
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/
Droll_deps.sh39 old_head=$(git rev-parse HEAD)
46 git rebase --interactive "${old_head}"
/external/deqp-deps/SPIRV-Tools/utils/
Droll_deps.sh39 old_head=$(git rev-parse HEAD)
46 git rebase --interactive "${old_head}"
/external/swiftshader/third_party/SPIRV-Tools/utils/
Droll_deps.sh39 old_head=$(git rev-parse HEAD)
46 git rebase --interactive "${old_head}"
/external/mesa3d/src/broadcom/vulkan/
Dv3dv_bo.c359 struct list_head *old_head = &cache->size_list[i]; in reallocate_size_list() local
360 if (list_is_empty(old_head)) { in reallocate_size_list()
363 new_list[i].next = old_head->next; in reallocate_size_list()
364 new_list[i].prev = old_head->prev; in reallocate_size_list()
/external/mesa3d/src/gallium/drivers/v3d/
Dv3d_bufmgr.c294 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()