Lines Matching defs:a
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
51 exptostat(Node *a)
53 a->ntype = NSTAT;
54 return (a);
58 node1(int a, Node *b)
63 x->nobj = a;
69 node2(int a, Node *b, Node *c)
74 x->nobj = a;
81 node3(int a, Node *b, Node *c, Node *d)
86 x->nobj = a;
94 node4(int a, Node *b, Node *c, Node *d, Node *e)
98 x->nobj = a;
107 stat3(int a, Node *b, Node *c, Node *d)
111 x = node3(a, b, c, d);
117 op2(int a, Node *b, Node *c)
121 x = node2(a, b, c);
127 op1(int a, Node *b)
131 x = node1(a, b);
137 stat1(int a, Node *b)
141 x = node1(a, b);
147 op3(int a, Node *b, Node *c, Node *d)
151 x = node3(a, b, c, d);
157 op4(int a, Node *b, Node *c, Node *d, Node *e)
161 x = node4(a, b, c, d, e);
167 stat2(int a, Node *b, Node *c)
171 x = node2(a, b, c);
177 stat4(int a, Node *b, Node *c, Node *d, Node *e)
181 x = node4(a, b, c, d, e);
187 valtonode(Cell *a, int b)
191 a->ctype = OCELL;
192 a->csub = b;
193 x = node1(0, (Node *)a);
213 ERROR "%s is a function, not an array", cp->nval SYNTAX;
224 pa2stat(Node *a, Node *b, Node *c)
228 x = node4(PASTAT2, a, b, c, (Node *)paircnt);
235 linkum(Node *a, Node *b)
240 return (a);
241 if (a == NULL)
244 return (a);
245 for (c = a; c->nnext != NULL; c = c->nnext)
248 return (a);
258 ERROR "`%s' is an array name and a function name",