Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r600/
Dcompute_memory_pool.c62 pool->unallocated_list = (struct list_head *) in compute_memory_pool_new()
65 list_inithead(pool->unallocated_list); in compute_memory_pool_new()
102 free(pool->unallocated_list); in compute_memory_pool_delete()
301 LIST_FOR_EACH_ENTRY(item, pool->unallocated_list, link) { in compute_memory_finalize_pending()
326 LIST_FOR_EACH_ENTRY_SAFE(item, next, pool->unallocated_list, link) { in compute_memory_finalize_pending()
444 list_addtail(&item->link, pool->unallocated_list); in compute_memory_demote_item()
592 LIST_FOR_EACH_ENTRY_SAFE(item, next, pool->unallocated_list, link) { in compute_memory_free()
642 list_addtail(&new_item->link, pool->unallocated_list); in compute_memory_alloc()
Dcompute_memory_pool.h76 struct list_head *unallocated_list; member