Lines Matching defs:curext
895 sp_ext_node_t *curext;
931 for (curext = *head;
932 (curext->ext_next != NULL) &&
933 ((*compare)(curext->ext_next, newext) < 0);
934 (curext = curext->ext_next))
938 newext->ext_next = curext->ext_next;
939 newext->ext_prev = curext;
941 if (curext->ext_next != NULL)
942 curext->ext_next->ext_prev = newext;
944 curext->ext_next = newext;