Lines Matching defs:t

73 	struct forknod *t;
75 t = (struct forknod *)getstor(sizeof(struct forknod));
76 t->forktyp = flgs|TFORK;
77 t->forktre = i;
78 t->forkio = 0;
79 return((struct trenod *)t);
87 struct lstnod *t;
93 t = (struct lstnod *)getstor(sizeof(struct lstnod));
94 t->lsttyp = type;
95 t->lstlef = i;
96 t->lstrit = r;
98 return((struct trenod *)t);
177 struct trenod *t;
184 if ((t = item(TRUE)) && (wdval == '^' || wdval == '|'))
189 left = makefork(FPOU, t);
194 return(t);
272 struct swnod *t;
274 t = (struct swnod *)getstor(sizeof(struct swnod));
275 r = (struct trenod *)t;
279 t->swarg = make(wdarg->argval);
281 t->swarg = wdarg->argval;
284 t->swlst = syncase(wdval == INSYM ? ESSYM : KTSYM);
285 t->swtyp = TSW;
292 struct ifnod *t;
294 t = (struct ifnod *)getstor(sizeof(struct ifnod));
295 r = (struct trenod *)t;
297 t->iftyp = TIF;
298 t->iftre = cmd(THSYM, NLFLG);
299 t->thtre = cmd(ELSYM | FISYM | EFSYM, NLFLG);
300 t->eltre = ((w = wdval) == ELSYM ? cmd(FISYM, NLFLG) : (w == EFSYM ? (wdval = IFSYM, item(0)) : 0));
308 struct fornod *t;
310 t = (struct fornod *)getstor(sizeof(struct fornod));
311 r = (struct trenod *)t;
313 t->fortyp = TFOR;
314 t->forlst = 0;
317 t->fornam = make(wdarg->argval);
319 t->fornam = wdarg->argval;
325 t->forlst = (struct comnod *)item(0);
335 t->fortre = cmd(wdval == DOSYM ? ODSYM : KTSYM, NLFLG);
342 struct whnod *t;
344 t = (struct whnod *)getstor(sizeof(struct whnod));
345 r = (struct trenod *)t;
347 t->whtyp = (wdval == WHSYM ? TWH : TUN);
348 t->whtre = cmd(DOSYM, NLFLG);
349 t->dotre = cmd(ODSYM, NLFLG);
374 struct comnod *t;
425 t = (struct comnod *)getstor(sizeof(struct comnod));
426 r = (struct trenod *)t;
428 t->comio = io; /*initial io chain*/
429 argtail = &(t->comarg);
462 t->comio = io = inout((struct ionod *)0);
466 t->comtyp = TCOM;
467 t->comset = (struct argnod *)argset;
472 if (t->comarg)
474 com = t->comarg->argval;
476 pathlook(com, 0, t->comset);