Home
last modified time | relevance | path

Searched refs:expr (Results 1 – 25 of 1237) sorted by relevance

12345678910>>...50

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dtree-streamer-out.cc72 pack_ts_base_value_fields (struct bitpack_d *bp, tree expr) in pack_ts_base_value_fields() argument
75 bp_pack_value (bp, TREE_CODE (expr), 16); in pack_ts_base_value_fields()
76 if (!TYPE_P (expr)) in pack_ts_base_value_fields()
78 bp_pack_value (bp, TREE_SIDE_EFFECTS (expr), 1); in pack_ts_base_value_fields()
79 bp_pack_value (bp, TREE_CONSTANT (expr), 1); in pack_ts_base_value_fields()
80 bp_pack_value (bp, TREE_READONLY (expr), 1); in pack_ts_base_value_fields()
85 bp_pack_value (bp, TREE_PUBLIC (expr), 1); in pack_ts_base_value_fields()
89 bp_pack_value (bp, TREE_ADDRESSABLE (expr), 1); in pack_ts_base_value_fields()
90 bp_pack_value (bp, TREE_THIS_VOLATILE (expr), 1); in pack_ts_base_value_fields()
91 if (DECL_P (expr)) in pack_ts_base_value_fields()
[all …]
Dtree-streamer-in.cc102 unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr) in unpack_ts_base_value_fields() argument
106 if (!TYPE_P (expr)) in unpack_ts_base_value_fields()
108 TREE_SIDE_EFFECTS (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
109 TREE_CONSTANT (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
110 TREE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
115 TREE_PUBLIC (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
119 TREE_ADDRESSABLE (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
120 TREE_THIS_VOLATILE (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
121 if (DECL_P (expr)) in unpack_ts_base_value_fields()
123 DECL_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1); in unpack_ts_base_value_fields()
[all …]
Dconvert.cc54 convert_to_pointer_1 (tree type, tree expr, bool fold_p) in convert_to_pointer_1() argument
56 location_t loc = EXPR_LOCATION (expr); in convert_to_pointer_1()
57 if (TREE_TYPE (expr) == type) in convert_to_pointer_1()
58 return expr; in convert_to_pointer_1()
60 switch (TREE_CODE (TREE_TYPE (expr))) in convert_to_pointer_1()
68 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (expr))); in convert_to_pointer_1()
71 return maybe_fold_build1_loc (fold_p, loc, NOP_EXPR, type, expr); in convert_to_pointer_1()
74 type, expr); in convert_to_pointer_1()
86 unsigned int eprec = TYPE_PRECISION (TREE_TYPE (expr)); in convert_to_pointer_1()
89 expr in convert_to_pointer_1()
[all …]
/netbsd/src/usr.bin/m4/
Dparser.y46 top : expr { end_result = $1; }
48 expr : expr '+' expr { $$ = $1 + $3; }
49 | expr '-' expr { $$ = $1 - $3; }
50 | expr '*' expr { $$ = $1 * $3; }
51 | expr '/' expr {
58 | expr '%' expr {
65 | expr LSHIFT expr { $$ = $1 << $3; }
66 | expr RSHIFT expr { $$ = $1 >> $3; }
67 | expr '<' expr { $$ = $1 < $3; }
68 | expr '>' expr { $$ = $1 > $3; }
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dexpr.cc93 mark_use (tree expr, bool rvalue_p, bool read_p, in mark_use() argument
99 if (expr == NULL_TREE || error_operand_p (expr)) in mark_use()
100 return expr; in mark_use()
102 if (reject_builtin && reject_gcc_builtin (expr, loc)) in mark_use()
106 mark_exp_read (expr); in mark_use()
108 tree oexpr = expr; in mark_use()
110 switch (TREE_CODE (expr)) in mark_use()
114 if (rvalue_p && is_normal_capture_proxy (expr)) in mark_use()
117 tree cap = DECL_CAPTURED_VARIABLE (expr); in mark_use()
118 if (TREE_CODE (TREE_TYPE (cap)) == TREE_CODE (TREE_TYPE (expr)) in mark_use()
[all …]
Dcvt.cc75 cp_convert_to_pointer (tree type, tree expr, bool dofold, in cp_convert_to_pointer() argument
78 tree intype = TREE_TYPE (expr); in cp_convert_to_pointer()
81 location_t loc = cp_expr_loc_or_input_loc (expr); in cp_convert_to_pointer()
97 rval = build_type_conversion (type, expr); in cp_convert_to_pointer()
103 expr, intype, type); in cp_convert_to_pointer()
115 return convert_member_func_to_ptr (type, expr, complain); in cp_convert_to_pointer()
116 if (TYPE_PTR_P (TREE_TYPE (expr))) in cp_convert_to_pointer()
117 return build_nop (type, expr); in cp_convert_to_pointer()
118 intype = TREE_TYPE (expr); in cp_convert_to_pointer()
121 if (expr == error_mark_node) in cp_convert_to_pointer()
[all …]
/netbsd/src/usr.sbin/gspa/gspa/
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); }
114 | '(' expr ')' { $$ = $2; }
115 | '~' expr { $$ = bexpr('~', $2, NULL); }
116 | '-' expr %prec UMINUS
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/hx509/
Dsel.c41 struct hx_expr *expr; in _hx509_make_expr() local
43 expr = malloc(sizeof(*expr)); in _hx509_make_expr()
44 if (expr == NULL) in _hx509_make_expr()
46 expr->op = op; in _hx509_make_expr()
47 expr->arg1 = arg1; in _hx509_make_expr()
48 expr->arg2 = arg2; in _hx509_make_expr()
50 return expr; in _hx509_make_expr()
88 eval_comp(hx509_context context, hx509_env env, struct hx_expr *expr) in eval_comp() argument
90 switch (expr->op) { in eval_comp()
97 s1 = eval_word(context, env, expr->arg1); in eval_comp()
[all …]
/netbsd/src/external/bsd/pcc/dist/pcc/f77/fcom/
Dgram.expr6 funargs: expr
8 | funargs SCOMMA expr
13 expr: uexpr
14 | SLPAR expr SRPAR { $$ = $2; }
20 | expr addop expr %prec SPLUS
22 | expr SSTAR expr
24 | expr SSLASH expr
26 | expr SPOWER expr
28 | addop expr %prec SSTAR
33 | expr relop expr %prec SEQ
[all …]
/netbsd/src/external/lgpl3/gmp/dist/tests/mpf/
Dt-fits.c33 printf ("%s (%s) got %d want %d\n", name, expr, got, answer); \
47 const char *expr; in main() local
59 expr = "0"; in main()
68 expr = "1"; in main()
77 expr = "-1"; in main()
87 expr = "USHRT_MAX"; in main()
94 expr = "USHRT_MAX + 0.5"; in main()
101 expr = "USHRT_MAX + 1"; in main()
106 expr = "UINT_MAX"; in main()
112 expr = "UINT_MAX + 0.5"; in main()
[all …]
/netbsd/src/external/bsd/byacc/dist/test/
Dcalc_code_default.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')'
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
50 | expr '/' expr
52 | expr '%' expr
54 | expr '&' expr
56 | expr '|' expr
[all …]
Dcalc.y33 stat : expr
35 | LETTER '=' expr
39 expr : '(' expr ')'
41 | expr '+' expr
43 | expr '-' expr
45 | expr '*' expr
47 | expr '/' expr
49 | expr '%' expr
51 | expr '&' expr
53 | expr '|' expr
[all …]
Dcalc_code_top.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')'
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
50 | expr '/' expr
52 | expr '%' expr
54 | expr '&' expr
56 | expr '|' expr
[all …]
Dcalc_code_requires.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')'
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
50 | expr '/' expr
52 | expr '%' expr
54 | expr '&' expr
56 | expr '|' expr
[all …]
Dcode_calc.y37 stat : expr
39 | LETTER '=' expr
43 expr : '(' expr ')'
45 | expr '+' expr
47 | expr '-' expr
49 | expr '*' expr
51 | expr '/' expr
53 | expr '%' expr
55 | expr '&' expr
57 | expr '|' expr
[all …]
Dcalc_code_provides.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')'
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
50 | expr '/' expr
52 | expr '%' expr
54 | expr '&' expr
56 | expr '|' expr
[all …]
Dcalc_code_imports.y36 stat : expr
38 | LETTER '=' expr
42 expr : '(' expr ')'
44 | expr '+' expr
46 | expr '-' expr
48 | expr '*' expr
50 | expr '/' expr
52 | expr '%' expr
54 | expr '&' expr
56 | expr '|' expr
[all …]
Dcalc_code_all.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')'
48 | expr '+' expr
50 | expr '-' expr
52 | expr '*' expr
54 | expr '/' expr
56 | expr '%' expr
58 | expr '&' expr
60 | expr '|' expr
[all …]
Dquote_calc2.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')'
48 | expr "ADD" expr
50 | expr "SUB" expr
52 | expr "MUL" expr
54 | expr "DIV" expr
56 | expr "MOD" expr
58 | expr "AND" expr
60 | expr '|' expr
[all …]
Dpure_calc.y39 stat : expr
41 | LETTER '=' expr
45 expr : '(' expr ')'
47 | expr '+' expr
49 | expr '-' expr
51 | expr '*' expr
53 | expr '/' expr
55 | expr '%' expr
57 | expr '&' expr
59 | expr '|' expr
[all …]
Dquote_calc4.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')'
48 | expr "ADD-operator" expr
50 | expr "SUB-operator" expr
52 | expr "MUL-operator" expr
54 | expr "DIV-operator" expr
56 | expr "MOD-operator" expr
58 | expr "AND-operator" expr
60 | expr '|' expr
[all …]
Dquote_calc3.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')'
48 | expr OP_ADD expr
50 | expr OP_SUB expr
52 | expr OP_MUL expr
54 | expr OP_DIV expr
56 | expr OP_MOD expr
58 | expr OP_AND expr
60 | expr '|' expr
[all …]
Dquote_calc.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')'
48 | expr OP_ADD expr
50 | expr OP_SUB expr
52 | expr OP_MUL expr
54 | expr OP_DIV expr
56 | expr OP_MOD expr
58 | expr OP_AND expr
60 | expr '|' expr
[all …]
Dcalc2.y40 stat : expr
42 | LETTER '=' expr
46 expr : '(' expr ')'
48 | expr '+' expr
50 | expr '-' expr
52 | expr '*' expr
54 | expr '/' expr
56 | expr '%' expr
58 | expr '&' expr
60 | expr '|' expr
[all …]
/netbsd/src/sys/external/bsd/drm2/dist/drm/i915/
Di915_gem.h51 #define GEM_WARN_ON(expr) WARN_ON(expr) argument
54 #define GEM_DEBUG_EXEC(expr) expr argument
55 #define GEM_DEBUG_BUG_ON(expr) GEM_BUG_ON(expr) argument
56 #define GEM_DEBUG_WARN_ON(expr) GEM_WARN_ON(expr) argument
62 #define GEM_BUG_ON(expr) BUILD_BUG_ON_INVALID(expr) argument
63 #define GEM_WARN_ON(expr) ({ unlikely(!!(expr)); }) argument
66 #define GEM_DEBUG_EXEC(expr) do { } while (0) argument
67 #define GEM_DEBUG_BUG_ON(expr) argument
68 #define GEM_DEBUG_WARN_ON(expr) ({ BUILD_BUG_ON_INVALID(expr); 0; }) argument
79 #define GEM_TRACE_DUMP_ON(expr) \ argument
[all …]

12345678910>>...50