Searched refs:old_head (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/util/
H A Dsparse_array.c250 uint64_t current_head, old_head; local in function:util_sparse_array_free_list_push
251 old_head = p_atomic_read(&fl->head);
253 current_head = old_head;
256 old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head);
257 } while (old_head != current_head);
274 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); local in function:util_sparse_array_free_list_pop_idx
275 if (old_head == current_head)
277 current_head = old_head;
295 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); local in function:util_sparse_array_free_list_pop_elem
296 if (old_head
[all...]
/xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
H A Dv3dv_bo.c362 struct list_head *old_head = &cache->size_list[i]; local in function:reallocate_size_list
363 if (list_is_empty(old_head)) {
366 new_list[i].next = old_head->next;
367 new_list[i].prev = old_head->prev;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
H A Dv3d_bufmgr.c294 struct list_head *old_head = &cache->size_list[i]; local in function:v3d_bo_last_unreference_locked_timed
295 if (list_is_empty(old_head))
298 new_list[i].next = old_head->next;
299 new_list[i].prev = old_head->prev;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/
H A Dv3d_bufmgr.c302 struct list_head *old_head = &cache->size_list[i]; local in function:v3d_bo_last_unreference_locked_timed
303 if (list_empty(old_head))
306 new_list[i].next = old_head->next;
307 new_list[i].prev = old_head->prev;

Completed in 4 milliseconds