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.c93 static arith_t arith_lookupvarint(char *varname) in arith_lookupvarint()
97 arith_t result; in arith_lookupvarint()
121 static arith_t do_binop(int op, arith_t a, arith_t b) in do_binop()
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()
168 arith_t result; in primary()
203 static arith_t binop2(arith_t a, int op, int precedence, int noeval) in binop2()
207 arith_t b; in binop2()
233 static arith_t binop(int token, union yystype *val, int op, int noeval) in binop()
235 arith_t a = primary(token, val, op, noeval); in binop()
[all …]
H A Darith_yylex.c53 arith_t
56 arith_t val; in strtoarith_t()
64 return (arith_t)strtoumax(nptr, endptr, 0); in strtoarith_t()
66 val = (arith_t)strtoumax(nptr, endptr, 0); in strtoarith_t()
H A Darith_yacc.h85 arith_t val;
91 arith_t strtoarith_t(const char *restrict nptr, char **restrict endptr);
H A Darith.h34 arith_t arith(const char *);
H A Dshell.h57 typedef intmax_t arith_t; typedef
H A Dexpand.c412 arith_t result; in expari()