Searched refs:llink (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/lib/libc/stdlib/
H A Dtsearch.c71 leaf = &(*leaf)->llink;
85 result->llink = NULL;
98 n = n->llink;
112 y = x->llink;
126 y->rlink = z->llink;
127 z->llink = y;
128 x->llink = z->rlink;
145 x->llink = y->rlink;
166 posix_tnode *z = y->llink;
167 x->rlink = z->llink;
[all...]
H A Dtdelete.c55 leaf = &(*leaf)->llink; \
61 ((*leaf)->balance > 0 && (*leaf)->llink->balance == 0)) { \
106 if ((*leaf)->llink == NULL) {
122 *leaf = old->llink;
141 z = y->llink;
142 x->rlink = z->llink;
143 z->llink = x;
144 y->llink = z->rlink;
153 x->rlink = y->llink;
154 y->llink
[all...]
H A Dtwalk.c31 if (root->llink == NULL && root->rlink == NULL)
35 if (root->llink != NULL)
36 trecurse(root->llink, action, level + 1);
H A Dtfind.c44 &(*rootp)->llink : /* T3: follow left branch */
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dtsearch.c24 struct node *llink, *rlink; member in struct:node
56 &(*rootp)->llink : /* T3: follow left branch */
65 q->llink = q->rlink = NULL;
81 if (root->llink == NULL && root->rlink == NULL)
85 if (root->llink != NULL)
86 trecurse(root->llink, action, level + 1);
129 &(*rootp)->llink : /* follow llink branch */
135 if ((q = (*rootp)->llink) == NULL) /* Left NULL? */
138 if (r->llink
[all...]
/freebsd-13-stable/contrib/ntp/libntp/
H A Dauthkeys.c27 DECL_DLIST_LINK(symkey, llink); /* for overall & free lists */
290 INIT_DLIST(key_listhead, llink);
310 while (NULL != (sk = HEAD_DLIST(key_listhead, llink))) {
356 LINK_SLIST(authfreekeys, sk, llink.f);
463 ITER_DLIST_BEGIN(key_listhead, sk, llink, symkey)
496 UNLINK_HEAD_SLIST(sk, authfreekeys, llink.f);
506 LINK_TAIL_DLIST(key_listhead, sk, llink);
536 UNLINK_DLIST(sk, llink);
539 LINK_SLIST(authfreekeys, sk, llink.f);
827 ITER_DLIST_BEGIN(key_listhead, sk, llink, symke
[all...]
/freebsd-13-stable/include/
H A Dsearch.h39 struct __posix_tnode *llink, *rlink; member in struct:__posix_tnode
/freebsd-13-stable/bin/cp/
H A Dutils.c302 char llink[PATH_MAX]; local
309 if ((len = readlink(p->fts_path, llink, sizeof(llink) - 1)) == -1) {
313 llink[len] = '\0';
318 if (symlink(llink, to.p_path)) {
319 warn("symlink: %s", llink);
/freebsd-13-stable/lib/libc/tests/stdlib/
H A Dtsearch_test.c48 height_left = tnode_assert(n->llink);

Completed in 125 milliseconds