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

1234567891011>>

/netbsd-current/tests/usr.bin/indent/
H A Dlsym_switch.c19 switch (expr) // comment
H A Dpsym_switch_expr.c13 * In all practical cases, a 'switch (expr)' is followed by a block, but the
21 switch (expr)
33 switch (expr)
47 switch (expr)
H A Dpsym_rbrace.c61 switch (expr)
67 switch (expr)
H A Dlsym_form_feed.c21 * Test form feed after 'if (expr)', even though it does not occur in practice.
26 if (expr)
38 if (expr)
H A Dlsym_case_label.c19 void function(void){switch(expr){case 1:;case 2:break;default:switch(inner){case 4:break;}}}
26 switch (expr) {
49 switch (expr) {
64 switch (expr) {
114 switch (expr) {
/netbsd-current/usr.bin/m4/
H A Dparser.y46 top : expr { end_result = $1; }
48 expr : expr '+' expr { $$ = $1 + $3; } label
49 | expr '-' expr { $$ = $1 - $3; }
50 | expr '*' expr { $$ = $1 * $3; }
51 | expr '/' expr {
[all...]
/netbsd-current/external/bsd/tradcpp/dist/
H A Deval.h32 bool eval(struct place *p, char *expr);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dint_util.h28 #define COMPILE_TIME_ASSERT(expr) COMPILE_TIME_ASSERT1(expr, __COUNTER__)
29 #define COMPILE_TIME_ASSERT1(expr, cnt) COMPILE_TIME_ASSERT2(expr, cnt)
30 #define COMPILE_TIME_ASSERT2(expr, cnt) \
31 typedef char ct_assert_##cnt[(expr) ? 1 : -1] UNUSED
/netbsd-current/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...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-streamer-out.cc72 pack_ts_base_value_fields (struct bitpack_d *bp, tree expr) argument
75 bp_pack_value (bp, TREE_CODE (expr), 16);
76 if (!TYPE_P (expr))
78 bp_pack_value (bp, TREE_SIDE_EFFECTS (expr), 1);
79 bp_pack_value (bp, TREE_CONSTANT (expr), 1);
80 bp_pack_value (bp, TREE_READONLY (expr), 1);
85 bp_pack_value (bp, TREE_PUBLIC (expr), 1);
89 bp_pack_value (bp, TREE_ADDRESSABLE (expr), 1);
90 bp_pack_value (bp, TREE_THIS_VOLATILE (expr), 1);
91 if (DECL_P (expr))
153 pack_ts_int_cst_value_fields(struct bitpack_d *bp, tree expr) argument
167 pack_ts_real_cst_value_fields(struct bitpack_d *bp, tree expr) argument
188 pack_ts_fixed_cst_value_fields(struct bitpack_d *bp, tree expr) argument
200 pack_ts_decl_common_value_fields(struct bitpack_d *bp, tree expr) argument
258 pack_ts_decl_wrtl_value_fields(struct bitpack_d *bp, tree expr) argument
268 pack_ts_decl_with_vis_value_fields(struct bitpack_d *bp, tree expr) argument
298 pack_ts_function_decl_value_fields(struct bitpack_d *bp, tree expr) argument
329 pack_ts_type_common_value_fields(struct bitpack_d *bp, tree expr) argument
376 pack_ts_block_value_fields(struct output_block *ob, struct bitpack_d *bp, tree expr) argument
393 pack_ts_translation_unit_decl_value_fields(struct output_block *ob, struct bitpack_d *bp, tree expr) argument
404 pack_ts_omp_clause_value_fields(struct output_block *ob, struct bitpack_d *bp, tree expr) argument
445 streamer_write_tree_bitfields(struct output_block *ob, tree expr) argument
553 write_ts_common_tree_pointers(struct output_block *ob, tree expr) argument
565 write_ts_vector_tree_pointers(struct output_block *ob, tree expr) argument
580 write_ts_poly_tree_pointers(struct output_block *ob, tree expr) argument
592 write_ts_complex_tree_pointers(struct output_block *ob, tree expr) argument
604 write_ts_decl_minimal_tree_pointers(struct output_block *ob, tree expr) argument
626 write_ts_decl_common_tree_pointers(struct output_block *ob, tree expr) argument
671 write_ts_decl_with_vis_tree_pointers(struct output_block *ob, tree expr) argument
686 write_ts_field_decl_tree_pointers(struct output_block *ob, tree expr) argument
700 write_ts_function_decl_tree_pointers(struct output_block *ob, tree expr) argument
716 write_ts_type_common_tree_pointers(struct output_block *ob, tree expr) argument
740 write_ts_type_non_common_tree_pointers(struct output_block *ob, tree expr) argument
761 write_ts_list_tree_pointers(struct output_block *ob, tree expr) argument
774 write_ts_vec_tree_pointers(struct output_block *ob, tree expr) argument
790 write_ts_exp_tree_pointers(struct output_block *ob, tree expr) argument
805 write_ts_block_tree_pointers(struct output_block *ob, tree expr) argument
829 write_ts_binfo_tree_pointers(struct output_block *ob, tree expr) argument
854 write_ts_constructor_tree_pointers(struct output_block *ob, tree expr) argument
872 write_ts_omp_clause_tree_pointers(struct output_block *ob, tree expr) argument
898 streamer_write_tree_body(struct output_block *ob, tree expr) argument
971 streamer_write_tree_header(struct output_block *ob, tree expr) argument
[all...]
/netbsd-current/external/bsd/byacc/dist/test/
H A Derr_syntax27.y43 stat : expr
45 | LETTER '=' expr
49 expr : '(' expr ')' label
51 | expr '+' expr
53 | expr '-' expr
55 | expr '*' expr
[all...]
H A Dquote_calc4.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')' label
48 | expr "ADD-operator" expr
50 | expr "SUB-operator" expr
52 | expr "MUL-operator" expr
[all...]
H A Dcalc3.y43 stat : expr
45 | LETTER '=' expr
49 expr : '(' expr ')' label
51 | expr '+' expr
53 | expr '-' expr
55 | expr '*' expr
[all...]
H A Dcalc2.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')' label
48 | expr '+' expr
50 | expr '-' expr
52 | expr '*' expr
[all...]
H A Dcode_calc.y37 stat : expr
39 | LETTER '=' expr
43 expr : '(' expr ')' label
45 | expr '+' expr
47 | expr '-' expr
49 | expr '*' expr
[all...]
H A Dcalc.y33 stat : expr
35 | LETTER '=' expr
39 expr : '(' expr ')' label
41 | expr '+' expr
43 | expr '-' expr
45 | expr '*' expr
[all...]
H A Dquote_calc3.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')' label
48 | expr OP_ADD expr
50 | expr OP_SUB expr
52 | expr OP_MUL expr
[all...]
H A Dpure_calc.y39 stat : expr
41 | LETTER '=' expr
45 expr : '(' expr ')' label
47 | expr '+' expr
49 | expr '-' expr
51 | expr '*' expr
[all...]
H A Dquote_calc.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')' label
48 | expr OP_ADD expr
50 | expr OP_SUB expr
52 | expr OP_MUL expr
[all...]
H A Dquote_calc2.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')' label
48 | expr "ADD" expr
50 | expr "SUB" expr
52 | expr "MUL" expr
[all...]
H A Dcalc_code_all.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')' label
48 | expr '+' expr
50 | expr '-' expr
52 | expr '*' expr
[all...]
H A Dcalc_code_default.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')' label
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
[all...]
H A Dcalc_code_imports.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')' label
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
[all...]
H A Dcalc_code_provides.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')' label
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
[all...]
H A Dcalc_code_requires.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')' label
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
[all...]

Completed in 291 milliseconds

1234567891011>>