Lines Matching refs:ctf_list_t
746 } ctf_list_t;
748 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
749 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
760 ctf_list_t cd_list; /* linked list pointers */
767 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
780 * each list element contains an embedded ctf_list_t as the first member.
781 * An additional ctf_list_t is used to store the head (l_next) and tail
786 ctf_list_append(ctf_list_t *lp, void *new)
788 ctf_list_t *p = lp->l_prev; /* p = tail list element */
789 ctf_list_t *q = new; /* q = new list element */
802 * Prepend the specified existing element to the given ctf_list_t. The
803 * existing pointer should be pointing at a struct with embedded ctf_list_t.
806 ctf_list_prepend(ctf_list_t *lp, void *new)
808 ctf_list_t *p = new; /* p = new list element */
809 ctf_list_t *q = lp->l_next; /* q = head list element */