Home
last modified time | relevance | path

Searched refs:narg (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/host-tools/nawk-20071023/
Dparse.c56 x->narg[0]=b; in node1()
66 x->narg[0] = b; in node2()
67 x->narg[1] = c; in node2()
77 x->narg[0] = b; in node3()
78 x->narg[1] = c; in node3()
79 x->narg[2] = d; in node3()
89 x->narg[0] = b; in node4()
90 x->narg[1] = c; in node4()
91 x->narg[2] = d; in node4()
92 x->narg[3] = e; in node4()
[all …]
Dawk.h137 struct Node *narg[1]; /* variable: actual size set by calling malloc */ member
Dawkgram.y458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
463 return ((Cell *)(p->narg[0]))->sval;
481 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
Db.c42 #define left(v) (v)->narg[0]
43 #define right(v) (v)->narg[1]
Drun.c148 x = (Cell *) (a->narg[0]); in execute()
158 x = (*proc)(a->narg, a->nobj); in execute()