Searched refs:noeval (Results 1 – 1 of 1) sorted by relevance
/freebsd/bin/sh/ |
H A D | arith_yacc.c | 164 static arith_t assignment(int var, int noeval); 166 static arith_t primary(int token, union yystype *val, int op, int noeval) in primary() argument 173 result = assignment(op, noeval); in primary() 183 return noeval ? val->val : arith_lookupvarint(val->name); in primary() 191 return -primary(op, val, yylex(), noeval); in primary() 194 return !primary(op, val, yylex(), noeval); in primary() 197 return ~primary(op, val, yylex(), noeval); in primary() 203 static arith_t binop2(arith_t a, int op, int precedence, int noeval) in binop2() argument 214 b = primary(token, &val, yylex(), noeval); in binop2() 219 b = binop2(b, op2, arith_prec(op), noeval); in binop2() [all …]
|