Lines Matching refs:id_ptr
1927 element to insert. id_ptr iterates through the already sorted elements
1929 struct id *id, *id_next, **id_ptr;
1941 for (id_ptr = &(head_ptr->first); ; id_ptr = &((*id_ptr)->next))
1942 if (*id_ptr == NULL
1945 || id->sequence > (*id_ptr)->sequence
1947 || (id->sequence == (*id_ptr)->sequence
1948 && strcmp (id->name, (*id_ptr)->name) > 0) */
1951 id->next = *id_ptr;
1952 *id_ptr = id;