• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/dev/isci/scil/

Lines Matching refs:alElement_p

286    SCI_ABSTRACT_ELEMENT_T * alElement_p
384 SCI_ABSTRACT_ELEMENT_T * alElement_p
412 SCI_ABSTRACT_ELEMENT_T * alElement_p
445 SCI_ABSTRACT_ELEMENT_T * alElement_p
513 alElement_p \
515 ( (alElement_p)->next_p )
524 SCI_ABSTRACT_ELEMENT_T * alElement_p = list_p->elements.front_p; \
526 while (alElement_p != NULL) \
530 alElement_p->next_p, \
531 alElement_p->previous_p, \
532 (U32*) (alElement_p->object_p)); \
534 alElement_p = alElement_p->next_p; \
561 SCI_ABSTRACT_ELEMENT_T * alElement_p = elem_list->back_p; \
564 if (alElement_p != NULL) \
566 obj_p = alElement_p->object_p; \
578 private_pool_free((list_p)->free_pool, alElement_p); \
592 SCI_ABSTRACT_ELEMENT_T * alElement_p = \
596 if (alElement_p != NULL) \
598 obj_p = alElement_p->object_p; \
599 private_pool_free((list_p)->free_pool, alElement_p); \
615 SCI_ABSTRACT_ELEMENT_T * alElement_p; \
617 while ((alElement_p = private_find(elem_list, (obj_p))) != NULL) \
619 if (alElement_p == elem_list->front_p) \
623 else if (alElement_p == elem_list->back_p) \
629 alElement_p->previous_p->next_p = alElement_p->next_p; \
630 alElement_p->next_p->previous_p = alElement_p->previous_p; \
632 private_pool_free((list_p)->free_pool, alElement_p); \
647 SCI_ABSTRACT_ELEMENT_T * alElement_p \
649 assert(alElement_p != NULL); \
651 alElement_p->object_p = (obj_p); \
655 elem_list->front_p = elem_list->back_p = alElement_p; \
659 elem_list->back_p->next_p = alElement_p; \
660 alElement_p->previous_p = elem_list->back_p; \
661 elem_list->back_p = alElement_p; \
676 SCI_ABSTRACT_ELEMENT_T * alElement_p = \
678 alElement_p->object_p = (obj_p); \
679 private_push_front(&(list_p)->elements, alElement_p); \
737 alElement_p \
741 if ((alElement_p) != NULL) \
742 obj_p = (alElement_p)->object_p; \
768 alElement_p \
773 (privateList_p)->front_p = (privateList_p)->back_p = (alElement_p); \
774 (alElement_p)->next_p = (alElement_p)->previous_p = NULL; \
778 (alElement_p)->next_p = (privateList_p)->front_p; \
779 (alElement_p)->previous_p = NULL; \
780 (privateList_p)->front_p->previous_p = (alElement_p); \
781 (privateList_p)->front_p = (alElement_p); \
798 SCI_ABSTRACT_ELEMENT_T * alElement_p = (privateList_p)->front_p; \
800 if (alElement_p != NULL) \
815 alElement_p; \
828 SCI_ABSTRACT_ELEMENT_T * alElement_p = (list_p)->front_p; \
830 while (alElement_p != NULL) \
833 if (alElement_p->object_p == (void*) (obj_p)) \
838 alElement_p = alElement_p->next_p; \
841 alElement_p; \
850 alElement_p \
855 private_push_front(&(free_pool)->free_list, (alElement_p)); \
864 SCI_ABSTRACT_ELEMENT_T * alElement_p; \
866 alElement_p = private_pop_front(&(free_pool)->free_list); \
868 memset(alElement_p, 0, sizeof(SCI_ABSTRACT_ELEMENT_T)); \
869 alElement_p; \