Searched refs:noeval (Results 1 – 1 of 1) sorted by relevance
| /freebsd/bin/sh/ |
| H A D | arith_yacc.c | 166 static arith_t assignment(int var, int noeval); 168 static arith_t primary(int token, union yystype *val, int op, int noeval) in primary() argument 175 result = assignment(op, noeval); in primary() 185 return noeval ? val->val : arith_lookupvarint(val->name); in primary() 193 return -primary(op, val, yylex(), noeval); in primary() 196 return !primary(op, val, yylex(), noeval); in primary() 199 return ~primary(op, val, yylex(), noeval); in primary() 205 static arith_t binop2(arith_t a, int op, int precedence, int noeval) in binop2() argument 216 b = primary(token, &val, yylex(), noeval); in binop2() 221 b = binop2(b, op2, arith_prec(op), noeval); in binop2() [all …]
|