Searched refs:expr1 (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/groff/src/preproc/refer/
H A Dlabel.y159 expression *expr1;
162 binary_expr(expression *e1, expression *e2) : expr1(e1), expr2(e2) { }
163 ~binary_expr() { delete expr1; delete expr2; }
166 return (expr1 ? expr1->analyze() : 0) | (expr2 ? expr2->analyze() : 0);
190 expression *expr1;
195 : expr1(e1), expr2(e2), expr3(e3) { }
196 ~ternary_expr() { delete expr1; delete expr2; delete expr3; }
199 return ((expr1 ? expr1
[all...]
/freebsd-9.3-release/contrib/gperf/src/
H A Doutput.cc562 expr1 outputs a simple expression of type 'const char *' referring to
566 virtual void output_comparison (const Output_Expr& expr1,
570 bool output_firstchar_comparison (const Output_Expr& expr1,
576 bool Output_Compare::output_firstchar_comparison (const Output_Expr& expr1, argument
587 expr1.output_expr ();
597 expr1.output_expr ();
608 virtual void output_comparison (const Output_Expr& expr1,
614 void Output_Compare_Strcmp::output_comparison (const Output_Expr& expr1, argument
617 bool firstchar_done = output_firstchar_comparison (expr1, expr2);
624 expr1
650 output_comparison(const Output_Expr& expr1, const Output_Expr& expr2) const argument
690 output_comparison(const Output_Expr& expr1, const Output_Expr& expr2) const argument
[all...]
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-mips.c4562 expressionS expr1;
4584 expr1.X_op = O_constant;
4585 expr1.X_op_symbol = NULL;
4586 expr1.X_add_symbol = NULL;
4587 expr1.X_add_number = 1;
4601 expr1.X_add_number = 8;
4602 macro_build (&expr1, "bgez", "s,p", sreg);
5141 expr1.X_add_number = 8;
5142 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5146 expr1
4555 expressionS expr1; local
7241 expressionS expr1; local
8121 expressionS expr1; local
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dtinytest_macros.h174 #define tt_mem_op(expr1, op, expr2, len) \
175 tt_assert_test_fmt_type(expr1,expr2,#expr1" "#op" "#expr2, \
/freebsd-9.3-release/contrib/gcc/cp/
H A Drtti.c571 tree expr1;
584 expr1 = build_headof (expr);
585 if (TREE_TYPE (expr1) != type)
586 expr1 = build1 (NOP_EXPR, type, expr1);
587 return ifnonnull (expr, expr1);
646 expr1 = expr;
648 expr1 = build_unary_op (ADDR_EXPR, expr1, 0);
651 (NULL_TREE, expr1, tree_con
569 tree expr1; local
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Demit-rtl.c1401 mem_expr_equal_p (tree expr1, tree expr2)
1403 if (expr1 == expr2)
1406 if (! expr1 || ! expr2)
1409 if (TREE_CODE (expr1) != TREE_CODE (expr2))
1412 if (TREE_CODE (expr1) == COMPONENT_REF)
1414 mem_expr_equal_p (TREE_OPERAND (expr1, 0),
1416 && mem_expr_equal_p (TREE_OPERAND (expr1, 1), /* field decl */
1419 if (INDIRECT_REF_P (expr1))
1420 return mem_expr_equal_p (TREE_OPERAND (expr1, 0),
1425 gcc_assert (DECL_P (expr1));
1394 mem_expr_equal_p(tree expr1, tree expr2) argument
[all...]
H A Dtree-outof-ssa.c549 print_exprs (FILE *f, const char *str1, tree expr1, const char *str2, argument
553 print_generic_expr (f, expr1, TDF_SLIM);
564 print_exprs_edge (FILE *f, edge e, const char *str1, tree expr1, argument
567 print_exprs (f, str1, expr1, str2, expr2, " across an abnormal edge");
H A Dc-typeck.c3423 build_compound_expr (tree expr1, tree expr2)
3425 if (!TREE_SIDE_EFFECTS (expr1))
3432 if (VOID_TYPE_P (TREE_TYPE (expr1))
3433 && (TREE_CODE (expr1) == NOP_EXPR
3434 || TREE_CODE (expr1) == CONVERT_EXPR))
3436 else if (VOID_TYPE_P (TREE_TYPE (expr1))
3437 && TREE_CODE (expr1) == COMPOUND_EXPR
3438 && (TREE_CODE (TREE_OPERAND (expr1, 1)) == CONVERT_EXPR
3439 || TREE_CODE (TREE_OPERAND (expr1, 1)) == NOP_EXPR))
3451 warn_if_unused_value (expr1, input_locatio
3404 build_compound_expr(tree expr1, tree expr2) argument
[all...]

Completed in 100 milliseconds