Searched refs:itonp (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/one-true-awk/ |
H A D | awkgram.y | 246 else $$ = op3(GETLINE, $4, itonp($2), $1); } 249 else $$ = op3(GETLINE, (Node*)0, itonp($2), $1); } 300 else $$ = stat3($1, $2, itonp($3), $4); } 303 else $$ = stat3($1, $2, itonp($3), $4); } 306 else $$ = stat3($1, $2, itonp($3), $4); } 370 | BLTIN '(' ')' { $$ = op2(BLTIN, itonp($1), rectonode()); } 371 | BLTIN '(' patlist ')' { $$ = op2(BLTIN, itonp($1), $3); } 372 | BLTIN { $$ = op2(BLTIN, itonp($1), rectonode()); } 398 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); } 399 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); } [all …]
|
H A D | parse.c | 233 x = node4(PASTAT2, a, b, c, itonp(paircnt)); in pa2stat() 296 Node *itonp(int i) /* and vice versa */ in itonp() function
|
H A D | proto.h | 93 extern Node *itonp(int);
|
H A D | b.c | 994 np = op2(CHAR, NIL, itonp(rlxval)); in primary() 1019 return (unary(op2(CHAR, NIL, itonp(HAT)))); in primary()
|
H A D | FIXES.1e | 837 by adding ptoi and itonp to localize the casts, which are
|