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); }
256 pattern comma pattern { $$ = linkum($1, $3); }
257 | plist comma pattern { $$ = linkum($1, $3); }
262 | pplist comma ppattern { $$ = linkum($1, $3); }
347 | stmtlist stmt { $$ = linkum($1, $2); }
442 arglist = $$ = linkum($1,celltonode($3,CVAR)); }
Dproto.h89 extern Node *linkum(Node *, Node *);
Dparse.c217 Node *linkum(Node *a, Node *b) in linkum() function