Searched refs:free_pool (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/dev/isci/scil/ |
H A D | sci_abstract_list.c | 102 SCI_ABSTRACT_ELEMENT_POOL_T * free_pool in sci_abstract_list_construct() argument 106 list->free_pool = free_pool; in sci_abstract_list_construct() 281 private_pool_free((list_p)->free_pool, alElement_p); in sci_abstract_list_popback() 302 private_pool_free((list_p)->free_pool, alElement_p); in sci_abstract_list_popfront() 337 private_pool_free((list_p)->free_pool, alElement_p); in sci_abstract_list_erase() 354 = private_pool_allocate((list_p)->free_pool); in sci_abstract_list_pushback() 385 private_pool_allocate((list_p)->free_pool); in sci_abstract_list_pushfront() 406 private_pool_allocate((list_p)->free_pool); in sci_abstract_list_insert() 564 SCI_ABSTRACT_ELEMENT_POOL_T * free_pool, in private_pool_free() argument 570 private_push_front(&(free_pool)->free_list, (alElement_p)); in private_pool_free() [all …]
|
H A D | sci_abstract_list.h | 207 SCI_ABSTRACT_ELEMENT_POOL_T * free_pool; member 225 SCI_ABSTRACT_ELEMENT_POOL_T * free_pool 442 SCI_ABSTRACT_ELEMENT_POOL_T * free_pool, 452 SCI_ABSTRACT_ELEMENT_POOL_T * free_pool 576 private_pool_free((list_p)->free_pool, alElement_p); \ 597 private_pool_free((list_p)->free_pool, alElement_p); \ 630 private_pool_free((list_p)->free_pool, alElement_p); \ 646 = private_pool_allocate((list_p)->free_pool); \ 675 private_pool_allocate((list_p)->free_pool); \ 695 private_pool_allocate((list_p)->free_pool); \ [all …]
|
/freebsd/sys/dev/qlnx/qlnxe/ |
H A D | ecore_spq.c | 587 OSAL_LIST_INIT(&p_spq->free_pool); in ecore_spq_setup() 599 OSAL_LIST_PUSH_TAIL(&p_virt->list, &p_spq->free_pool); in ecore_spq_setup() 734 if (OSAL_LIST_IS_EMPTY(&p_spq->free_pool)) { in ecore_spq_get_entry() 743 p_ent = OSAL_LIST_FIRST_ENTRY(&p_spq->free_pool, in ecore_spq_get_entry() 746 OSAL_LIST_REMOVE_ENTRY(&p_ent->list, &p_spq->free_pool); in ecore_spq_get_entry() 761 OSAL_LIST_PUSH_TAIL(&p_ent->list, &p_hwfn->p_spq->free_pool); in __ecore_spq_return_entry() 793 if (OSAL_LIST_IS_EMPTY(&p_spq->free_pool)) { in ecore_spq_add_entry() 803 p_en2 = OSAL_LIST_FIRST_ENTRY(&p_spq->free_pool, in ecore_spq_add_entry() 806 OSAL_LIST_REMOVE_ENTRY(&p_en2->list, &p_spq->free_pool); in ecore_spq_add_entry() 898 while (!OSAL_LIST_IS_EMPTY(&p_spq->free_pool)) in ecore_spq_pend_post()
|
H A D | ecore_spq.h | 179 osal_list_t free_pool; member
|