Searched refs:expr (Results 1 - 25 of 1006) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/usr.bin/m4/
H A Dparser.y45 top : expr { end_result = $1; }
47 expr : expr '+' expr { $$ = $1 + $3; } label
48 | expr '-' expr { $$ = $1 - $3; }
49 | expr '*' expr { $$ = $1 * $3; }
50 | expr '/' expr {
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20040208-2.x1 return [expr ![istarget mips*-*-irix6*]]
H A Dipa-sra-2.x3 return [expr [check_effective_target_int16 ]]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20040208-2.x1 return [expr ![istarget mips*-*-irix6*]]
/netbsd-6-1-5-RELEASE/bin/expr/
H A DMakefile3 PROG= expr
4 SRCS= expr.y
/netbsd-6-1-5-RELEASE/bin/sh/
H A Darith.y81 exp: expr {
91 expr: ARITH_LPAREN expr ARITH_RPAREN { $$ = $2; } label
92 | expr ARITH_OR expr { $$ = $1 ? $1 : $3 ? $3 : 0; }
93 | expr ARITH_AND expr { $$ = $1 ? ( $3 ? $3 : 0 ) : 0; }
94 | expr ARITH_BOR expr { $$ = $1 | $3; }
95 | expr ARITH_BXO
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/gspa/gspa/
H A Dgsp_gram.y49 expr y_expr;
72 %type <y_expr> expr
81 | ID '=' expr { do_asg($1, $3, 0); }
97 | expr { $$ = expr_op($1); }
101 ea : '@' expr { $$ = abs_adr($2); }
107 | '*' REGISTER '(' expr ')'
111 expr : ID { $$ = id_expr($1); } label
114 | '(' expr ')' { $$ = $2; }
115 | '~' expr { $$ = bexpr('~', $2, NULL); }
116 | '-' expr
[all...]
H A Dgsp_ass.h72 typedef struct expr { struct
76 struct expr *left;
77 struct expr *right;
82 } *expr; typedef in typeref:struct:expr
99 expr value;
128 operand abs_adr(expr);
130 expr bexpr(int, expr, expr);
131 void do_asg(char *, expr, in
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/byacc/dist/test/
H A Dcalc.y30 stat : expr
32 | LETTER '=' expr
36 expr : '(' expr ')' label
38 | expr '+' expr
40 | expr '-' expr
42 | expr '*' expr
[all...]
H A Dcalc2.y32 stat : expr
34 | LETTER '=' expr
38 expr : '(' expr ')' label
40 | expr '+' expr
42 | expr '-' expr
44 | expr '*' expr
[all...]
H A Dcalc3.y34 stat : expr
36 | LETTER '=' expr
40 expr : '(' expr ')' label
42 | expr '+' expr
44 | expr '-' expr
46 | expr '*' expr
[all...]
H A Dcode_calc.y30 stat : expr
32 | LETTER '=' expr
36 expr : '(' expr ')' label
38 | expr '+' expr
40 | expr '-' expr
42 | expr '*' expr
[all...]
H A Dpure_calc.y30 stat : expr
32 | LETTER '=' expr
36 expr : '(' expr ')' label
38 | expr '+' expr
40 | expr '-' expr
42 | expr '*' expr
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/include/
H A Dassert.h28 inline void do_assert(int expr, int line, const char *file) argument
30 if (!expr)
40 #define assert(expr) do_assert(expr, __LINE__, __FILE__)
/netbsd-6-1-5-RELEASE/external/bsd/mdocml/dist/
H A Dapropos_db.h48 struct expr;
51 const struct expr *, size_t, void *,
53 struct expr *exprcomp(int, char *[], size_t *);
54 void exprfree(struct expr *);
55 struct expr *termcomp(int, char *[], size_t *);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dsel-gram.y49 struct hx_expr *expr;
59 %type <expr> expr
60 %type <expr> comp
61 %type <expr> word words
62 %type <expr> number
63 %type <expr> string
64 %type <expr> function
65 %type <expr> variable variables
75 start: expr { _hx509_expr_inpu
77 expr : kw_TRUE { $$ = _hx509_make_expr(op_TRUE, NULL, NULL); } label
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Ddummy-conditions.c33 const char *expr; member in struct:c_test
H A Dc-convert.c54 In expr.c: expand_expr, for operands of a MULT_EXPR.
71 convert (tree type, tree expr)
73 tree e = expr;
78 || expr == error_mark_node
79 || TREE_TYPE (expr) == error_mark_node)
83 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
89 if (type == TREE_TYPE (expr))
90 return expr;
92 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (TREE_TYPE (expr)))
93 return fold_build1 (NOP_EXPR, type, expr);
69 convert(tree type, tree expr) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/pmax/stand/bootxx_cd9660/
H A DMakefile8 PRIMARY_MAX_LOAD!= expr 8192 - 512
/netbsd-6-1-5-RELEASE/sys/arch/sbmips/stand/bootxx_cd9660/
H A DMakefile11 PRIMARY_MAX_LOAD!= expr 8192 - 512
/netbsd-6-1-5-RELEASE/sys/arch/mipsco/stand/bootxx_cd9660/
H A DMakefile8 PRIMARY_MAX_LOAD!= expr 8192 - 512
/netbsd-6-1-5-RELEASE/sys/arch/emips/stand/bootxx_cd9660/
H A DMakefile8 PRIMARY_MAX_LOAD!= expr 8192
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dloadpre10.c17 /* Redundant loads of expr->common.code */
19 test (tree expr, int t, int D17630) argument
24 if (expr->common.code != 142) goto L23; else goto L2;
38 expr = foo ();
39 if (expr->common.code != 142) goto L23; else goto L0;
45 return expr;
H A Dpr21417.c19 test (tree expr, int t, int D17630) argument
24 if (expr->common.code != 142) goto L23; else goto L2;
38 expr = foo ();
39 if (expr->common.code != 142) goto L23; else goto L0;
45 return expr;
50 execute the if (expr->common.code != 142) test once per loop
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/treelang/
H A Dtree-convert.c52 In expr.c: expand_expr, for operands of a MULT_EXPR.
64 convert (tree type, tree expr)
66 tree e = expr;
69 if (type == TREE_TYPE (expr)
70 || TREE_CODE (expr) == ERROR_MARK
71 || code == ERROR_MARK || TREE_CODE (TREE_TYPE (expr)) == ERROR_MARK)
72 return expr;
74 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (TREE_TYPE (expr)))
75 return fold_build1 (NOP_EXPR, type, expr);
76 if (TREE_CODE (TREE_TYPE (expr))
63 convert(tree type, tree expr) argument
[all...]

Completed in 468 milliseconds

1234567891011>>