Searched refs:itonp (Results 1 – 5 of 5) sorted by relevance
/external/one-true-awk/ |
D | awkgram.y | 244 else $$ = op3(GETLINE, $4, itonp($2), $1); } 247 else $$ = op3(GETLINE, (Node*)0, itonp($2), $1); } 298 else $$ = stat3($1, $2, itonp($3), $4); } 301 else $$ = stat3($1, $2, itonp($3), $4); } 304 else $$ = stat3($1, $2, itonp($3), $4); } 368 | BLTIN '(' ')' { $$ = op2(BLTIN, itonp($1), rectonode()); } 369 | BLTIN '(' patlist ')' { $$ = op2(BLTIN, itonp($1), $3); } 370 | BLTIN { $$ = op2(BLTIN, itonp($1), rectonode()); } 378 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); } 379 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); } [all …]
|
D | parse.c | 210 x = node4(PASTAT2, a, b, c, itonp(paircnt)); in pa2stat() 273 Node *itonp(int i) /* and vice versa */ in itonp() function
|
D | proto.h | 95 extern Node *itonp(int);
|
D | b.c | 765 np = op2(CHAR, NIL, itonp(rlxval)); in primary() 790 return (unary(op2(CHAR, NIL, itonp(HAT)))); in primary()
|
D | FIXES | 766 by adding ptoi and itonp to localize the casts, which are
|