Lines Matching defs:b
58 node1(int a, Node *b)
64 x->narg[0] = b;
69 node2(int a, Node *b, Node *c)
75 x->narg[0] = b;
81 node3(int a, Node *b, Node *c, Node *d)
87 x->narg[0] = b;
94 node4(int a, Node *b, Node *c, Node *d, Node *e)
99 x->narg[0] = b;
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)
192 a->csub = b;
224 pa2stat(Node *a, Node *b, Node *c)
228 x = node4(PASTAT2, a, b, c, (Node *)paircnt);
235 linkum(Node *a, Node *b)
242 return (b);
243 else if (b == NULL)
247 c->nnext = b;