/src/bin/sh/ |
arithmetic.c | 220 last_token = arith_token(); 228 last_token = arith_token(); 240 return primary(op, val, arith_token(), noeval); 243 return -primary(op, val, arith_token(), noeval); 246 return !primary(op, val, arith_token(), noeval); 249 return ~primary(op, val, arith_token(), noeval); 254 last_token = arith_token(); 280 token = arith_token(); 283 b = primary(token, &val, arith_token(), noeval); 326 token = arith_token(); [all...] |
arithmetic.c | 220 last_token = arith_token(); 228 last_token = arith_token(); 240 return primary(op, val, arith_token(), noeval); 243 return -primary(op, val, arith_token(), noeval); 246 return !primary(op, val, arith_token(), noeval); 249 return ~primary(op, val, arith_token(), noeval); 254 last_token = arith_token(); 280 token = arith_token(); 283 b = primary(token, &val, arith_token(), noeval); 326 token = arith_token(); [all...] |
arith_tokens.h | 40 * Tokens returned from arith_token() 120 int arith_token(void);
|
arith_tokens.h | 40 * Tokens returned from arith_token() 120 int arith_token(void);
|
arith_token.c | 1 /* $NetBSD: arith_token.c,v 1.7 2017/12/17 04:06:03 kre Exp $ */ 42 __RCSID("$NetBSD: arith_token.c,v 1.7 2017/12/17 04:06:03 kre Exp $"); 73 arith_token(void) function in typeref:typename:int
|
arith_token.c | 1 /* $NetBSD: arith_token.c,v 1.7 2017/12/17 04:06:03 kre Exp $ */ 42 __RCSID("$NetBSD: arith_token.c,v 1.7 2017/12/17 04:06:03 kre Exp $"); 73 arith_token(void) function in typeref:typename:int
|
Makefile | 7 SHSRCS= alias.c arith_token.c arithmetic.c cd.c echo.c error.c eval.c exec.c \
|
Makefile | 7 SHSRCS= alias.c arith_token.c arithmetic.c cd.c echo.c error.c eval.c exec.c \
|