Searched refs:itonp (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/host-tools/nawk-20071023/ |
D | awkgram.y | 243 else $$ = op3(GETLINE, $4, itonp($2), $1); } 246 else $$ = op3(GETLINE, (Node*)0, itonp($2), $1); } 297 else $$ = stat3($1, $2, itonp($3), $4); } 300 else $$ = stat3($1, $2, itonp($3), $4); } 303 else $$ = stat3($1, $2, itonp($3), $4); } 362 | BLTIN '(' ')' { $$ = op2(BLTIN, itonp($1), rectonode()); } 363 | BLTIN '(' patlist ')' { $$ = op2(BLTIN, itonp($1), $3); } 364 | BLTIN { $$ = op2(BLTIN, itonp($1), rectonode()); } 372 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); } 373 | 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(intptr_t i) /* and vice versa */ in itonp() function
|
D | proto.h | 99 extern Node *itonp(intptr_t);
|
D | b.c | 634 np = op2(CHAR, NIL, itonp(rlxval)); in primary() 656 return (unary(op2(CHAR, NIL, itonp(HAT)))); in primary()
|
D | FIXES | 350 by adding ptoi and itonp to localize the casts, which are
|