Lines Matching refs:tnp
561 register NODE *tnp; in execute() local
583 tnp = np; in execute()
609 np = tnp; in execute()
1002 NODE *tnp; in exprreduce() local
1040 tnp = np->n_left; in exprreduce()
1043 fname = aname = tnp->n_name; in exprreduce()
1044 if (tnp->n_type == PARM) { in exprreduce()
1045 tnp = tnp->n_next; in exprreduce()
1046 tag = tnp->n_scope; in exprreduce()
1047 if (!(tnp->n_flags & FLARRAY)) { in exprreduce()
1048 tnp = tnp->n_alink; in exprreduce()
1050 aname = tnp->n_name; in exprreduce()
1052 if (tnp->n_type != ARRAY) { in exprreduce()
1053 if (!isstring(tnp->n_flags) || tnp->n_string != _null) in exprreduce()
1057 promote(tnp); in exprreduce()
1058 if (tnp->n_alink != NNULL) { in exprreduce()
1059 tag = tnp->n_scope; in exprreduce()
1060 if (!(tnp->n_flags & FLARRAY)) in exprreduce()
1061 tnp = tnp->n_alink; in exprreduce()
1062 aname = tnp->n_name; in exprreduce()
1065 if (tnp->n_flags & FLARRAY) in exprreduce()
1066 tag = tnp->n_scope; in exprreduce()
1070 if (tnp == varSYMTAB) { in exprreduce()
1081 np->n_alink = tnp->n_alink; in exprreduce()
1082 tnp->n_alink = np; in exprreduce()
1155 tnp = realnode(np->n_real); in exprreduce()
1157 tnp = intnode(exprint(np)); in exprreduce()
1160 return (tnp); in exprreduce()