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

/freebsd-current/lib/libc/stdlib/
H A Dtsearch.c68 leaf = &(*leaf)->llink;
82 result->llink = NULL;
95 n = n->llink;
109 y = x->llink;
123 y->rlink = z->llink;
124 z->llink = y;
125 x->llink = z->rlink;
142 x->llink = y->rlink;
163 posix_tnode *z = y->llink;
164 x->rlink = z->llink;
[all...]
H A Dtdelete.c52 leaf = &(*leaf)->llink; \
58 ((*leaf)->balance > 0 && (*leaf)->llink->balance == 0)) { \
103 if ((*leaf)->llink == NULL) {
119 *leaf = old->llink;
138 z = y->llink;
139 x->rlink = z->llink;
140 z->llink = x;
141 y->llink = z->rlink;
150 x->rlink = y->llink;
151 y->llink
[all...]
H A Dtwalk.c29 if (root->llink == NULL && root->rlink == NULL)
33 if (root->llink != NULL)
34 trecurse(root->llink, action, level + 1);
H A Dtfind.c42 &(*rootp)->llink : /* T3: follow left branch */
/freebsd-current/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-current/contrib/ntp/libntp/
H A Dauthkeys.c27 DECL_DLIST_LINK(symkey, llink); /* for overall & free lists */
289 INIT_DLIST(key_listhead, llink);
309 while (NULL != (sk = HEAD_DLIST(key_listhead, llink))) {
355 LINK_SLIST(authfreekeys, sk, llink.f);
462 ITER_DLIST_BEGIN(key_listhead, sk, llink, symkey)
495 UNLINK_HEAD_SLIST(sk, authfreekeys, llink.f);
505 LINK_TAIL_DLIST(key_listhead, sk, llink);
535 UNLINK_DLIST(sk, llink);
538 LINK_SLIST(authfreekeys, sk, llink.f);
826 ITER_DLIST_BEGIN(key_listhead, sk, llink, symke
[all...]
/freebsd-current/include/
H A Dsearch.h38 struct __posix_tnode *llink, *rlink; member in struct:__posix_tnode
/freebsd-current/bin/cp/
H A Dutils.c249 char llink[PATH_MAX]; local
256 if ((len = readlink(p->fts_path, llink, sizeof(llink) - 1)) == -1) {
260 llink[len] = '\0';
265 if (symlink(llink, to.p_path)) {
266 warn("symlink: %s", llink);
/freebsd-current/lib/libc/tests/stdlib/
H A Dtsearch_test.c45 height_left = tnode_assert(n->llink);

Completed in 102 milliseconds