Home | History | Annotate | Download | only in stdlib

Lines Matching refs:llink

43 		    &(*rootp)->llink :		/* follow llink branch */
49 if ((q = (*rootp)->llink) == NULL) /* Left NULL? */
52 if (r->llink == NULL) { /* D2: Find successor */
53 r->llink = q;
56 for (q = r->llink; q->llink != NULL; q = r->llink)
58 r->llink = q->rlink;
59 q->llink = (*rootp)->llink;