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

/freebsd-11-stable/bin/sh/
H A Darith_yacc.c166 static arith_t assignment(int var, int noeval);
168 static arith_t primary(int token, union yystype *val, int op, int noeval) argument
175 result = assignment(op, noeval);
185 return noeval ? val->val : arith_lookupvarint(val->name);
193 return -primary(op, val, yylex(), noeval);
196 return !primary(op, val, yylex(), noeval);
199 return ~primary(op, val, yylex(), noeval);
205 static arith_t binop2(arith_t a, int op, int precedence, int noeval) argument
216 b = primary(token, &val, yylex(), noeval);
221 b = binop2(b, op2, arith_prec(op), noeval);
235 binop(int token, union yystype *val, int op, int noeval) argument
246 and(int token, union yystype *val, int op, int noeval) argument
263 or(int token, union yystype *val, int op, int noeval) argument
280 cond(int token, union yystype *val, int op, int noeval) argument
302 assignment(int var, int noeval) argument
[all...]

Completed in 45 milliseconds