Home
last modified time | relevance | path

Searched refs:v_link (Results 1 – 6 of 6) sorted by relevance

/freebsd/usr.bin/mail/
H A Dcmd3.c363 for (vp = variables[h]; vp != NULL; vp = vp->v_link) in set()
367 for (vp = variables[h]; vp != NULL; vp = vp->v_link) in set()
420 variables[h] = variables[h]->v_link; in unset()
426 for (vp = variables[h]; vp->v_link != vp2; vp = vp->v_link) in unset()
428 vp->v_link = vp2->v_link; in unset()
H A Dvars.c56 vp->v_link = variables[h]; in assign()
121 for (vp = variables[hash(name)]; vp != NULL; vp = vp->v_link) in lookup()
H A Ddef.h200 struct var *v_link; /* Forward link to next variable */ member
/freebsd/sys/kern/
H A Dkern_lockf.c254 TAILQ_ENTRY(owner_vertex) v_link; /* (g) workspace for edge insertion */
2037 TAILQ_INSERT_HEAD(path, x, v_link); in graph_reaches()
2044 TAILQ_INSERT_HEAD(path, x, v_link); in graph_reaches()
2084 TAILQ_FOREACH(v, set, v_link) { in graph_print_vertices()
2087 if (TAILQ_NEXT(v, v_link)) in graph_print_vertices()
2118 TAILQ_INSERT_TAIL(delta, y, v_link); in graph_delta_forward()
2129 TAILQ_INSERT_TAIL(delta, e->e_to, v_link); in graph_delta_forward()
2133 v = TAILQ_NEXT(v, v_link); in graph_delta_forward()
2159 TAILQ_INSERT_TAIL(delta, x, v_link); in graph_delta_backward()
2168 TAILQ_INSERT_HEAD(delta, e->e_from, v_link); in graph_delta_backward()
[all …]
/freebsd/contrib/tcsh/
H A Dsh.set.c726 while ((c = p->v_link[f]) != 0) { in setq()
739 p->v_link[f] = c = xmalloc(sizeof(struct varent)); in setq()
884 if ((pp->v_link[f] = c) != 0) in unsetv1()
1034 pp->v_link[ff] = rleft(p); in balance()
1039 pp->v_link[ff] = rleft(p); in balance()
1045 pp->v_link[ff] = rleft(p); in balance()
1071 pp->v_link[ff] = rright(p); in balance()
1076 pp->v_link[ff] = rright(p); in balance()
1082 pp->v_link[ff] = rright(p); in balance()
H A Dsh.h1015 struct varent *v_link[3]; /* The links, see below */ member
1019 #define v_left v_link[0]
1020 #define v_right v_link[1]
1021 #define v_parent v_link[2]