Lines Matching refs:alElement_p

284    SCI_ABSTRACT_ELEMENT_T * alElement_p
382 SCI_ABSTRACT_ELEMENT_T * alElement_p
410 SCI_ABSTRACT_ELEMENT_T * alElement_p
443 SCI_ABSTRACT_ELEMENT_T * alElement_p
511 alElement_p \
513 ( (alElement_p)->next_p )
522 SCI_ABSTRACT_ELEMENT_T * alElement_p = list_p->elements.front_p; \
524 while (alElement_p != NULL) \
528 alElement_p->next_p, \
529 alElement_p->previous_p, \
530 (U32*) (alElement_p->object_p)); \
532 alElement_p = alElement_p->next_p; \
559 SCI_ABSTRACT_ELEMENT_T * alElement_p = elem_list->back_p; \
562 if (alElement_p != NULL) \
564 obj_p = alElement_p->object_p; \
576 private_pool_free((list_p)->free_pool, alElement_p); \
590 SCI_ABSTRACT_ELEMENT_T * alElement_p = \
594 if (alElement_p != NULL) \
596 obj_p = alElement_p->object_p; \
597 private_pool_free((list_p)->free_pool, alElement_p); \
613 SCI_ABSTRACT_ELEMENT_T * alElement_p; \
615 while ((alElement_p = private_find(elem_list, (obj_p))) != NULL) \
617 if (alElement_p == elem_list->front_p) \
621 else if (alElement_p == elem_list->back_p) \
627 alElement_p->previous_p->next_p = alElement_p->next_p; \
628 alElement_p->next_p->previous_p = alElement_p->previous_p; \
630 private_pool_free((list_p)->free_pool, alElement_p); \
645 SCI_ABSTRACT_ELEMENT_T * alElement_p \
647 assert(alElement_p != NULL); \
649 alElement_p->object_p = (obj_p); \
653 elem_list->front_p = elem_list->back_p = alElement_p; \
657 elem_list->back_p->next_p = alElement_p; \
658 alElement_p->previous_p = elem_list->back_p; \
659 elem_list->back_p = alElement_p; \
674 SCI_ABSTRACT_ELEMENT_T * alElement_p = \
676 alElement_p->object_p = (obj_p); \
677 private_push_front(&(list_p)->elements, alElement_p); \
735 alElement_p \
739 if ((alElement_p) != NULL) \
740 obj_p = (alElement_p)->object_p; \
766 alElement_p \
771 (privateList_p)->front_p = (privateList_p)->back_p = (alElement_p); \
772 (alElement_p)->next_p = (alElement_p)->previous_p = NULL; \
776 (alElement_p)->next_p = (privateList_p)->front_p; \
777 (alElement_p)->previous_p = NULL; \
778 (privateList_p)->front_p->previous_p = (alElement_p); \
779 (privateList_p)->front_p = (alElement_p); \
796 SCI_ABSTRACT_ELEMENT_T * alElement_p = (privateList_p)->front_p; \
798 if (alElement_p != NULL) \
813 alElement_p; \
826 SCI_ABSTRACT_ELEMENT_T * alElement_p = (list_p)->front_p; \
828 while (alElement_p != NULL) \
831 if (alElement_p->object_p == (void*) (obj_p)) \
836 alElement_p = alElement_p->next_p; \
839 alElement_p; \
848 alElement_p \
853 private_push_front(&(free_pool)->free_list, (alElement_p)); \
862 SCI_ABSTRACT_ELEMENT_T * alElement_p; \
864 alElement_p = private_pop_front(&(free_pool)->free_list); \
866 memset(alElement_p, 0, sizeof(SCI_ABSTRACT_ELEMENT_T)); \
867 alElement_p; \