Searched refs:nbinary (Results 1 – 7 of 7) sorted by relevance
| /dflybsd-src/bin/sh/pregenerated/ |
| H A D | nodes.c | 64 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 D | nodes.h | 35 struct nbinary { struct 137 struct nbinary nbinary; member
|
| /dflybsd-src/bin/sh/ |
| H A D | nodetypes | 52 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 D | jobs.c | 1400 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 D | eval.c | 212 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 D | show.c | 92 shtree(n->nbinary.ch1, ind, NULL, fp); in shtree() 95 shtree(n->nbinary.ch2, ind, NULL, fp); in shtree()
|
| H A D | parser.c | 305 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()
|