Home
last modified time | relevance | path

Searched refs:nbinary (Results 1 – 7 of 7) sorted by relevance

/dflybsd-src/bin/sh/pregenerated/
H A Dnodes.c64 ALIGN(sizeof (struct nbinary)),
70 ALIGN(sizeof (struct nbinary)),
71 ALIGN(sizeof (struct nbinary)),
73 ALIGN(sizeof (struct nbinary)),
74 ALIGN(sizeof (struct nbinary)),
150 calcsize(n->nbinary.ch2, result); in calcsize()
151 calcsize(n->nbinary.ch1, result); in calcsize()
245 new->nbinary.ch2 = copynode(n->nbinary.ch2, state); in copynode()
246 new->nbinary.ch1 = copynode(n->nbinary.ch1, state); in copynode()
H A Dnodes.h35 struct nbinary { struct
137 struct nbinary nbinary; member
/dflybsd-src/bin/sh/
H A Dnodetypes52 NSEMI nbinary # two commands separated by a semicolon
75 NAND nbinary # the && operator
76 NOR nbinary # the || operator
84 NWHILE nbinary # the while statement. First child is the test
85 NUNTIL nbinary # the until statement
H A Djobs.c1400 cmdtxt(n->nbinary.ch1); in cmdtxt()
1402 cmdtxt(n->nbinary.ch2); in cmdtxt()
1405 cmdtxt(n->nbinary.ch1); in cmdtxt()
1407 cmdtxt(n->nbinary.ch2); in cmdtxt()
1410 cmdtxt(n->nbinary.ch1); in cmdtxt()
1412 cmdtxt(n->nbinary.ch2); in cmdtxt()
1439 cmdtxt(n->nbinary.ch1); in cmdtxt()
1440 cmdtxtdogroup(n->nbinary.ch2); in cmdtxt()
1444 cmdtxt(n->nbinary.ch1); in cmdtxt()
1445 cmdtxtdogroup(n->nbinary.ch2); in cmdtxt()
H A Deval.c212 evaltree(n->nbinary.ch1, flags & ~EV_EXIT); in evaltree()
215 next = n->nbinary.ch2; in evaltree()
218 evaltree(n->nbinary.ch1, EV_TESTED); in evaltree()
222 next = n->nbinary.ch2; in evaltree()
225 evaltree(n->nbinary.ch1, EV_TESTED); in evaltree()
228 next = n->nbinary.ch2; in evaltree()
321 evaltree(n->nbinary.ch1, EV_TESTED); in evalloop()
340 evaltree(n->nbinary.ch2, flags); in evalloop()
H A Dshow.c92 shtree(n->nbinary.ch1, ind, NULL, fp); in shtree()
95 shtree(n->nbinary.ch2, ind, NULL, fp); in shtree()
H A Dparser.c305 n3 = makebinary(NSEMI, n1->nbinary.ch2, n2); in list()
306 n1->nbinary.ch2 = n3; in list()
719 n = (union node *)stalloc(sizeof (struct nbinary)); in makebinary()
721 n->nbinary.ch1 = n1; in makebinary()
722 n->nbinary.ch2 = n2; in makebinary()