Lines Matching refs:x

34 	register NODE *x;
35 x = (NODE *) malloc(sizeof (NODE) + (n-1)*sizeof (NODE *));
36 if (x == NULL)
38 return (x);
55 register NODE *x;
56 x = nodealloc(0);
57 x->nnext = NULL;
58 x->nobj = a;
59 return (x);
67 register NODE *x;
68 x = nodealloc(1);
69 x->nnext = NULL;
70 x->nobj = a;
71 x->narg[0]=b;
72 return (x);
80 register NODE *x;
81 x = nodealloc(2);
82 x->nnext = NULL;
83 x->nobj = a;
84 x->narg[0] = b;
85 x->narg[1] = c;
86 return (x);
94 register NODE *x;
95 x = nodealloc(3);
96 x->nnext = NULL;
97 x->nobj = a;
98 x->narg[0] = b;
99 x->narg[1] = c;
100 x->narg[2] = d;
101 return (x);
109 register NODE *x;
110 x = nodealloc(4);
111 x->nnext = NULL;
112 x->nobj = a;
113 x->narg[0] = b;
114 x->narg[1] = c;
115 x->narg[2] = d;
116 x->narg[3] = e;
117 return (x);
125 register NODE *x;
126 x = node3(a, b, c, d);
127 x->ntype = NSTAT;
128 return (x);
136 register NODE *x;
137 x = node2(a, b, c);
138 x->ntype = NEXPR;
139 return (x);
147 register NODE *x;
148 x = node1(a, b);
149 x->ntype = NEXPR;
150 return (x);
158 register NODE *x;
159 x = node1(a, b);
160 x->ntype = NSTAT;
161 return (x);
169 register NODE *x;
170 x = node3(a, b, c, d);
171 x->ntype = NEXPR;
172 return (x);
180 register NODE *x;
181 x = node2(a, b, c);
182 x->ntype = NSTAT;
183 return (x);
191 register NODE *x;
192 x = node4(a, b, c, d, e);
193 x->ntype = NSTAT;
194 return (x);
202 register NODE *x;
203 x = node0(a);
204 x->ntype = NVALUE;
205 x->subtype = b;
206 return (x);
214 register NODE *x;
215 x = node4(PASTAT2, a, b, c, (NODE *) paircnt);
217 x->ntype = NSTAT;
218 return (x);
240 register NODE *x;
242 x = stat2(PRINT, valtonode(lookup(L_record, symtab, 0), CFLD), NULL);
243 return (x);