| /NextBSD/contrib/binutils/gas/config/ |
| HD | tc-mips.c | 4555 expressionS expr1; in macro() local 4577 expr1.X_op = O_constant; in macro() 4578 expr1.X_op_symbol = NULL; in macro() 4579 expr1.X_add_symbol = NULL; in macro() 4580 expr1.X_add_number = 1; in macro() 4594 expr1.X_add_number = 8; in macro() 4595 macro_build (&expr1, "bgez", "s,p", sreg); in macro() 5134 expr1.X_add_number = 8; in macro() 5135 macro_build (&expr1, "bne", "s,t,p", treg, 0); in macro() 5139 expr1.X_add_number = -1; in macro() [all …]
|
| /NextBSD/contrib/gperf/src/ |
| HD | output.cc | 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, in output_firstchar_comparison() argument 587 expr1.output_expr (); in output_firstchar_comparison() 597 expr1.output_expr (); in output_firstchar_comparison() 608 virtual void output_comparison (const Output_Expr& expr1, 614 void Output_Compare_Strcmp::output_comparison (const Output_Expr& expr1, in output_comparison() argument 617 bool firstchar_done = output_firstchar_comparison (expr1, expr2); in output_comparison() 624 expr1.output_expr (); in output_comparison() 631 expr1.output_expr (); in output_comparison() [all …]
|
| /NextBSD/contrib/groff/src/preproc/refer/ |
| HD | label.y | 159 expression *expr1; 162 binary_expr(expression *e1, expression *e2) : expr1(e1), expr2(e2) { } in binary_expr() 163 ~binary_expr() { delete expr1; delete expr2; } in ~binary_expr() local 166 return (expr1 ? expr1->analyze() : 0) | (expr2 ? expr2->analyze() : 0); in analyze() 190 expression *expr1; 195 : expr1(e1), expr2(e2), expr3(e3) { } in ternary_expr() 196 ~ternary_expr() { delete expr1; delete expr2; delete expr3; } in ~ternary_expr() local 199 return ((expr1 ? expr1->analyze() : 0) in analyze() 789 if (expr1) in evaluate() 790 expr1->evaluate(tentative, ref, result, pos); in evaluate() [all …]
|
| /NextBSD/contrib/ntp/sntp/libevent/test/ |
| HD | tinytest_macros.h | 174 #define tt_mem_op(expr1, op, expr2, len) \ argument 175 tt_assert_test_fmt_type(expr1,expr2,#expr1" "#op" "#expr2, \
|
| /NextBSD/contrib/gcc/cp/ |
| HD | rtti.c | 569 tree expr1; in build_dynamic_cast_1() local 582 expr1 = build_headof (expr); in build_dynamic_cast_1() 583 if (TREE_TYPE (expr1) != type) in build_dynamic_cast_1() 584 expr1 = build1 (NOP_EXPR, type, expr1); in build_dynamic_cast_1() 585 return ifnonnull (expr, expr1); in build_dynamic_cast_1() 644 expr1 = expr; in build_dynamic_cast_1() 646 expr1 = build_unary_op (ADDR_EXPR, expr1, 0); in build_dynamic_cast_1() 649 (NULL_TREE, expr1, tree_cons in build_dynamic_cast_1()
|
| /NextBSD/contrib/subversion/subversion/include/private/ |
| HD | svn_sqlite.h | 513 #define SVN_SQLITE__WITH_LOCK4(expr1, expr2, expr3, expr4, db) \ argument 519 svn_sqlite__err = (expr1); \
|
| /NextBSD/contrib/subversion/subversion/libsvn_wc/ |
| HD | wc_db_private.h | 394 #define SVN_WC__DB_WITH_TXN4(expr1, expr2, expr3, expr4, wcroot) \ argument 395 SVN_SQLITE__WITH_LOCK4(expr1, expr2, expr3, expr4, (wcroot)->sdb)
|
| /NextBSD/contrib/gcc/ |
| HD | emit-rtl.c | 1394 mem_expr_equal_p (tree expr1, tree expr2) in mem_expr_equal_p() argument 1396 if (expr1 == expr2) in mem_expr_equal_p() 1399 if (! expr1 || ! expr2) in mem_expr_equal_p() 1402 if (TREE_CODE (expr1) != TREE_CODE (expr2)) in mem_expr_equal_p() 1405 if (TREE_CODE (expr1) == COMPONENT_REF) in mem_expr_equal_p() 1407 mem_expr_equal_p (TREE_OPERAND (expr1, 0), in mem_expr_equal_p() 1409 && mem_expr_equal_p (TREE_OPERAND (expr1, 1), /* field decl */ in mem_expr_equal_p() 1412 if (INDIRECT_REF_P (expr1)) in mem_expr_equal_p() 1413 return mem_expr_equal_p (TREE_OPERAND (expr1, 0), in mem_expr_equal_p() 1418 gcc_assert (DECL_P (expr1)); in mem_expr_equal_p()
|
| HD | tree-outof-ssa.c | 549 print_exprs (FILE *f, const char *str1, tree expr1, const char *str2, in print_exprs() argument 553 print_generic_expr (f, expr1, TDF_SLIM); in print_exprs() 564 print_exprs_edge (FILE *f, edge e, const char *str1, tree expr1, in print_exprs_edge() argument 567 print_exprs (f, str1, expr1, str2, expr2, " across an abnormal edge"); in print_exprs_edge()
|
| HD | c-typeck.c | 3557 build_compound_expr (tree expr1, tree expr2) in build_compound_expr() argument 3559 if (!TREE_SIDE_EFFECTS (expr1)) in build_compound_expr() 3566 if (VOID_TYPE_P (TREE_TYPE (expr1)) in build_compound_expr() 3567 && (TREE_CODE (expr1) == NOP_EXPR in build_compound_expr() 3568 || TREE_CODE (expr1) == CONVERT_EXPR)) in build_compound_expr() 3570 else if (VOID_TYPE_P (TREE_TYPE (expr1)) in build_compound_expr() 3571 && TREE_CODE (expr1) == COMPOUND_EXPR in build_compound_expr() 3572 && (TREE_CODE (TREE_OPERAND (expr1, 1)) == CONVERT_EXPR in build_compound_expr() 3573 || TREE_CODE (TREE_OPERAND (expr1, 1)) == NOP_EXPR)) in build_compound_expr() 3585 warn_if_unused_value (expr1, input_location); in build_compound_expr() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| HD | ThreadSafetyTIL.h | 1227 SExpr *expr1() { return Expr1; } in expr1() function 1228 const SExpr *expr1() const { return Expr1; } in expr1() function 1246 return Cmp.compare(expr1(), E->expr1()); in compare()
|
| HD | ThreadSafetyTraverse.h | 766 self()->printSExpr(E->expr1(), SS, Prec_Binary-1); in printBinaryOp()
|
| /NextBSD/contrib/gdb/gdb/doc/ |
| HD | gdb.texinfo | 6857 @item collect @var{expr1}, @var{expr2}, @dots{}
|