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

/freebsd-9.3-release/bin/sh/
H A Darith_yacc.c164 static arith_t assignment(int var, int noeval);
166 static arith_t primary(int token, union yystype *val, int op, int noeval) argument
173 result = assignment(op, noeval);
183 return noeval ? val->val : arith_lookupvarint(val->name);
191 return -primary(op, val, yylex(), noeval);
194 return !primary(op, val, yylex(), noeval);
197 return ~primary(op, val, yylex(), noeval);
203 static arith_t binop2(arith_t a, int op, int precedence, int noeval) argument
214 b = primary(token, &val, yylex(), noeval);
219 b = binop2(b, op2, arith_prec(op), noeval);
233 binop(int token, union yystype *val, int op, int noeval) argument
244 and(int token, union yystype *val, int op, int noeval) argument
261 or(int token, union yystype *val, int op, int noeval) argument
278 cond(int token, union yystype *val, int op, int noeval) argument
300 assignment(int var, int noeval) argument
[all...]

Completed in 52 milliseconds