Searched refs:itonp (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/cmd/awk/ |
H A D | awk.g.y | 276 else $$ = op3(GETLINE, $4, itonp($2), $1); } 279 else $$ = op3(GETLINE, (Node*)0, itonp($2), $1); } 330 else $$ = stat3($1, $2, itonp($3), $4); } 333 else $$ = stat3($1, $2, itonp($3), $4); } 336 else $$ = stat3($1, $2, itonp($3), $4); } 395 | BLTIN '(' ')' { $$ = op2(BLTIN, itonp($1), rectonode()); } 396 | BLTIN '(' patlist ')' { $$ = op2(BLTIN, itonp($1), $3); } 397 | BLTIN { $$ = op2(BLTIN, itonp($1), rectonode()); } 405 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); } 406 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); } [all …]
|
H A D | parse.c | 254 x = node4(PASTAT2, a, b, c, itonp(paircnt)); in pa2stat() 325 itonp(int i) /* and vice versa */ in itonp() function
|
H A D | awk.h | 326 extern Node *itonp(int);
|
H A D | b.c | 733 np = op2(CHAR, NIL, itonp(rlxval)); in primary() 757 return (unary(op2(CHAR, NIL, itonp(HAT)))); in primary()
|