Home
last modified time | relevance | path

Searched refs:ARITH_SUB (Results 1 – 6 of 6) sorted by relevance

/system/core/sh/
Darith.y71 %left ARITH_ADD ARITH_SUB
97 | expr ARITH_SUB expr { $$ = $1 - $3; }
111 | ARITH_SUB expr %prec ARITH_UNARYMINUS { $$ = -($2); }
Darith.h17 #define ARITH_SUB 274 macro
Darith_lex.l92 "-" { return(ARITH_SUB); }
Dinit.c65 #undef ARITH_SUB
66 #define ARITH_SUB 274 macro
357 #undef ARITH_SUB
358 #define ARITH_SUB 274 macro
649 #undef ARITH_SUB
650 #define ARITH_SUB 274 macro
Darith.c72 ARITH_SUB = 274, enumerator
99 #define ARITH_SUB 274 macro
Darith_lex.c892 { return(ARITH_SUB); }