Home
last modified time | relevance | path

Searched refs:linkum (Results 1 – 3 of 3) sorted by relevance

/external/one-true-awk/
Dawkgram.y182 { beginloc = linkum(beginloc, $3); $$ = 0; }
184 { endloc = linkum(endloc, $3); $$ = 0; }
191 | pa_stats opt_pst pa_stat { $$ = linkum($1, $3); }
196 | patlist comma pattern { $$ = linkum($1, $3); }
254 pattern comma pattern { $$ = linkum($1, $3); }
255 | plist comma pattern { $$ = linkum($1, $3); }
260 | pplist comma ppattern { $$ = linkum($1, $3); }
345 | stmtlist stmt { $$ = linkum($1, $2); }
437 arglist = $$ = linkum($1,celltonode($3,CVAR)); }
Dproto.h89 extern Node *linkum(Node *, Node *);
Dparse.c217 Node *linkum(Node *a, Node *b) in linkum() function