Searched refs:noeval (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/third_party/uapp/dash/src/
H A Darith_yacc.c135 static intmax_t assignment(int var, int noeval);
137 static intmax_t primary(int token, union yystype *val, int op, int noeval) argument
144 result = assignment(op, noeval);
154 return noeval ? val->val : lookupvarint(val->name);
162 return -primary(op, val, yylex(), noeval);
165 return !primary(op, val, yylex(), noeval);
168 return ~primary(op, val, yylex(), noeval);
174 static intmax_t binop2(intmax_t a, int op, int prec, int noeval) argument
185 b = primary(token, &val, yylex(), noeval);
190 b = binop2(b, op2, arith_prec(op), noeval);
204 binop(int token, union yystype *val, int op, int noeval) argument
215 and(int token, union yystype *val, int op, int noeval) argument
232 or(int token, union yystype *val, int op, int noeval) argument
249 cond(int token, union yystype *val, int op, int noeval) argument
271 assignment(int var, int noeval) argument
[all...]

Completed in 20 milliseconds