Home
last modified time | relevance | path

Searched refs:arith_t (Results 1 – 6 of 6) sorted by relevance

/freebsd/bin/sh/
H A Darith_yacc.c95 static arith_t arith_lookupvarint(char *varname) in arith_lookupvarint()
99 arith_t result; in arith_lookupvarint()
123 static arith_t do_binop(int op, arith_t a, arith_t b) in do_binop()
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()
170 arith_t result; in primary()
205 static arith_t binop2(arith_t a, int op, int precedence, int noeval) in binop2()
209 arith_t b; in binop2()
235 static arith_t binop(int token, union yystype *val, int op, int noeval) in binop()
237 arith_t a = primary(token, val, op, noeval); in binop()
[all …]
H A Darith_yylex.c55 arith_t
58 arith_t val; in strtoarith_t()
66 return (arith_t)strtoumax(nptr, endptr, 0); in strtoarith_t()
68 val = (arith_t)strtoumax(nptr, endptr, 0); in strtoarith_t()
H A Darith_yacc.h87 arith_t val;
93 arith_t strtoarith_t(const char *restrict nptr, char **restrict endptr);
H A Darith.h36 arith_t arith(const char *);
H A Dshell.h57 typedef intmax_t arith_t; typedef
H A Dexpand.c414 arith_t result; in expari()