| /netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/ |
| H A D | tmpfile.cpp | 87 char *tem2 = new char[tem_len + need_slash + 1]; in temp_init() local 88 strcpy(tem2, tem); in temp_init() 90 strcat(tem2, "/"); in temp_init() 92 if (file_name_max(tem2) <= 14) { in temp_init() 98 strcpy(tmpfile_prefix, tem2); in temp_init() 100 a_delete tem2; in temp_init() local
|
| /netbsd-src/external/gpl2/texinfo/dist/makeinfo/ |
| H A D | node.c | 1411 char *tem1, *tem2; in validate_file() local 1440 tem2 = expand_node_name (tags->node); in validate_file() 1442 if (tem1 && tem2 && STREQ (tem1, tem2)) in validate_file() 1445 free (tem2); in validate_file() 1477 tem2 = expand_node_name (tags->up); in validate_file() 1478 prev_equals_up = STREQ (tem1, tem2); in validate_file() 1480 free (tem2); in validate_file() 1498 tem2 = expand_node_name (tags->node); in validate_file() 1499 if (STREQ (tem1, tem2)) in validate_file() 1502 free (tem2); in validate_file()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | tree-stdarg.cc | 425 va_list_ptr_write (struct stdarg_info *si, tree ap, tree tem2) in va_list_ptr_write() argument 433 if (TREE_CODE (tem2) != SSA_NAME in va_list_ptr_write() 434 || bitmap_bit_p (si->va_list_vars, SSA_NAME_VERSION (tem2))) in va_list_ptr_write() 440 increment = va_list_counter_bump (si, ap, tem2, true); in va_list_ptr_write()
|
| H A D | gimple-isel.cc | 157 tree tem2 = gimple_build (&stmts, loc, BIT_AND_EXPR, type, op2, tem1); in gimple_expand_vec_cond_expr() local 158 tree tem3 = gimple_build (&stmts, loc, BIT_IOR_EXPR, type, tem0, tem2); in gimple_expand_vec_cond_expr()
|
| H A D | tree-ssa-forwprop.cc | 2100 tree tem2; in simplify_rotate() local 2101 defcodefor_name (tem, &code, &tem2, NULL); in simplify_rotate() 2103 && INTEGRAL_TYPE_P (TREE_TYPE (tem2)) in simplify_rotate() 2104 && TYPE_PRECISION (TREE_TYPE (tem2)) in simplify_rotate() 2106 && type_has_mode_precision_p (TREE_TYPE (tem2))) in simplify_rotate() 2108 if (tem2 == def_arg2[1 - i] in simplify_rotate() 2109 || tem2 == def_arg2_alt[1 - i]) in simplify_rotate() 2111 rotcnt = tem2; in simplify_rotate() 2113 if (tem2 == def_arg2[1 - i]) in simplify_rotate() 2121 tem2 = NULL_TREE; in simplify_rotate() [all …]
|
| H A D | fold-const.cc | 11733 tree tem2; in fold_binary_loc() local 11735 tem2 = fold_convert_loc (loc, TREE_TYPE (tem), arg1); in fold_binary_loc() 11736 tem2 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem), in fold_binary_loc() 11737 tem, tem2); in fold_binary_loc() 11738 return fold_build2_loc (loc, EQ_EXPR, type, tem2, in fold_binary_loc() 11746 tree tem2; in fold_binary_loc() local 11748 tem2 = fold_convert_loc (loc, TREE_TYPE (tem), arg1); in fold_binary_loc() 11749 tem2 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem), in fold_binary_loc() 11750 tem, tem2); in fold_binary_loc() 11751 return fold_build2_loc (loc, EQ_EXPR, type, tem2, in fold_binary_loc() [all …]
|
| H A D | tree-ssa-sccvn.cc | 809 vn_reference_op_s tem1, tem2; in vn_reference_eq() local 849 memset (&tem2, 0, sizeof (tem2)); in vn_reference_eq() 850 tem2.op0 = TREE_OPERAND (vro2->op0, 0); in vn_reference_eq() 851 tem2.type = TREE_TYPE (tem2.op0); in vn_reference_eq() 852 tem2.opcode = TREE_CODE (tem2.op0); in vn_reference_eq() 853 vro2 = &tem2; in vn_reference_eq()
|
| H A D | tree-ssa-reassoc.cc | 3105 tree tem1, tem2, mask; in optimize_range_tests_diff() local 3110 tem2 = fold_binary (MINUS_EXPR, type, highj, lowj); in optimize_range_tests_diff() 3111 if (!tree_int_cst_equal (tem1, tem2)) in optimize_range_tests_diff() 3131 tem2 = fold_convert (type, tem2); in optimize_range_tests_diff() 3139 NULL, rangei->in_p, lowj, tem2, in optimize_range_tests_diff()
|
| H A D | reload1.cc | 8417 rtx tem1, tem2; in gen_reload() local 8554 else if ((tem1 = replaced_subreg (in), tem2 = replaced_subreg (out), in gen_reload() 8555 (REG_P (tem1) && REG_P (tem2))) in gen_reload() 8557 && REGNO (tem2) < FIRST_PSEUDO_REGISTER in gen_reload() 8560 REGNO_REG_CLASS (REGNO (tem2)))) in gen_reload()
|
| H A D | tree-data-ref.cc | 4284 lambda_int tem2 = add_hwi (mat[r2][i], tem, &ovf); in lambda_matrix_row_add() local 4285 if (ovf || tem2 == HOST_WIDE_INT_MIN) in lambda_matrix_row_add() 4287 mat[r2][i] = tem2; in lambda_matrix_row_add()
|
| H A D | tree-ssa-strlen.cc | 3993 tree tem2 = fold_const_aggregate_ref (arg2); in handle_builtin_memcmp() local 3994 if (tem2) in handle_builtin_memcmp() 3995 arg2 = tem2; in handle_builtin_memcmp()
|
| H A D | tree-vect-stmts.cc | 3212 tree tem2 = make_ssa_name (char_vectype); in vectorizable_bswap() local 3213 new_stmt = gimple_build_assign (tem2, VEC_PERM_EXPR, in vectorizable_bswap() 3218 vectype, tem2)); in vectorizable_bswap()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | tree-stdarg.c | 425 va_list_ptr_write (struct stdarg_info *si, tree ap, tree tem2) in va_list_ptr_write() argument 433 if (TREE_CODE (tem2) != SSA_NAME in va_list_ptr_write() 434 || bitmap_bit_p (si->va_list_vars, SSA_NAME_VERSION (tem2))) in va_list_ptr_write() 440 increment = va_list_counter_bump (si, ap, tem2, true); in va_list_ptr_write()
|
| H A D | tree-ssa-forwprop.c | 1749 tree tem2; in simplify_rotate() local 1750 defcodefor_name (tem, &code, &tem2, NULL); in simplify_rotate() 1752 && INTEGRAL_TYPE_P (TREE_TYPE (tem2)) in simplify_rotate() 1753 && TYPE_PRECISION (TREE_TYPE (tem2)) in simplify_rotate() 1755 && type_has_mode_precision_p (TREE_TYPE (tem2))) in simplify_rotate() 1757 if (tem2 == def_arg2[1 - i] in simplify_rotate() 1758 || tem2 == def_arg2_alt[1 - i]) in simplify_rotate() 1760 rotcnt = tem2; in simplify_rotate() 1765 tem2 = NULL_TREE; in simplify_rotate() 1774 || tem2 == cdef_arg1[1 - i]) in simplify_rotate() [all …]
|
| H A D | fold-const.c | 11108 tree tem2; in fold_binary_loc() local 11110 tem2 = fold_convert_loc (loc, TREE_TYPE (tem), arg1); in fold_binary_loc() 11111 tem2 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem), in fold_binary_loc() 11112 tem, tem2); in fold_binary_loc() 11113 return fold_build2_loc (loc, EQ_EXPR, type, tem2, in fold_binary_loc() 11121 tree tem2; in fold_binary_loc() local 11123 tem2 = fold_convert_loc (loc, TREE_TYPE (tem), arg1); in fold_binary_loc() 11124 tem2 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem), in fold_binary_loc() 11125 tem, tem2); in fold_binary_loc() 11126 return fold_build2_loc (loc, EQ_EXPR, type, tem2, in fold_binary_loc() [all …]
|
| H A D | tree-ssa-sccvn.c | 739 vn_reference_op_s tem1, tem2; in vn_reference_eq() local 779 memset (&tem2, 0, sizeof (tem2)); in vn_reference_eq() 780 tem2.op0 = TREE_OPERAND (vro2->op0, 0); in vn_reference_eq() 781 tem2.type = TREE_TYPE (tem2.op0); in vn_reference_eq() 782 tem2.opcode = TREE_CODE (tem2.op0); in vn_reference_eq() 783 vro2 = &tem2; in vn_reference_eq()
|
| H A D | tree-ssa-reassoc.c | 2940 tree tem1, tem2, mask; in optimize_range_tests_diff() local 2945 tem2 = fold_binary (MINUS_EXPR, type, highj, lowj); in optimize_range_tests_diff() 2946 if (!tree_int_cst_equal (tem1, tem2)) in optimize_range_tests_diff() 2966 tem2 = fold_convert (type, tem2); in optimize_range_tests_diff() 2974 NULL, rangei->in_p, lowj, tem2, in optimize_range_tests_diff()
|
| H A D | reload1.c | 8459 rtx tem1, tem2; in gen_reload() local 8596 else if ((tem1 = replaced_subreg (in), tem2 = replaced_subreg (out), in gen_reload() 8597 (REG_P (tem1) && REG_P (tem2))) in gen_reload() 8599 && REGNO (tem2) < FIRST_PSEUDO_REGISTER in gen_reload() 8602 REGNO_REG_CLASS (REGNO (tem2)))) in gen_reload()
|
| H A D | tree-ssa-strlen.c | 4081 tree tem2 = fold_const_aggregate_ref (arg2); in handle_builtin_memcmp() local 4082 if (tem2) in handle_builtin_memcmp() 4083 arg2 = tem2; in handle_builtin_memcmp()
|
| H A D | tree-vect-stmts.c | 3172 tree tem2 = make_ssa_name (char_vectype); in vectorizable_bswap() local 3173 new_stmt = gimple_build_assign (tem2, VEC_PERM_EXPR, in vectorizable_bswap() 3178 vectype, tem2)); in vectorizable_bswap()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/cris/ |
| H A D | cris.cc | 2049 rtx tem2 = XEXP (x, 1); in cris_address_cost() local 2054 tem1 = tem2, tem2 = XEXP (x, 0); in cris_address_cost() 2063 || REG_P (tem2)) in cris_address_cost() 2068 if (CONST_INT_P (tem2) && INTVAL (tem2) < 128 && INTVAL (tem2) >= -128) in cris_address_cost() 2073 if (satisfies_constraint_L (tem2)) in cris_address_cost() 2077 if (CONSTANT_P (tem2)) in cris_address_cost()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/cris/ |
| H A D | cris.c | 2248 rtx tem2 = XEXP (x, 1); in cris_address_cost() local 2253 tem1 = tem2, tem2 = XEXP (x, 0); in cris_address_cost() 2262 || REG_P (tem2)) in cris_address_cost() 2267 if (CONST_INT_P (tem2) && INTVAL (tem2) < 128 && INTVAL (tem2) >= -128) in cris_address_cost() 2272 if (satisfies_constraint_L (tem2)) in cris_address_cost() 2276 if (CRIS_CONSTANT_P (tem2)) in cris_address_cost()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/sparc/ |
| H A D | sparc.c | 8463 rtx slot0, slot1, result, tem, tem2, libfunc; in sparc_emit_float_lib_cmp() local 8587 tem2 = gen_reg_rtx (mode); in sparc_emit_float_lib_cmp() 8589 emit_insn (gen_andsi3 (tem2, tem, const2_rtx)); in sparc_emit_float_lib_cmp() 8591 emit_insn (gen_anddi3 (tem2, tem, const2_rtx)); in sparc_emit_float_lib_cmp() 8593 return gen_rtx_fmt_ee (new_comparison, VOIDmode, tem2, const0_rtx); in sparc_emit_float_lib_cmp()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/sparc/ |
| H A D | sparc.cc | 8395 rtx slot0, slot1, result, tem, tem2, libfunc; in sparc_emit_float_lib_cmp() local 8519 tem2 = gen_reg_rtx (mode); in sparc_emit_float_lib_cmp() 8521 emit_insn (gen_andsi3 (tem2, tem, const2_rtx)); in sparc_emit_float_lib_cmp() 8523 emit_insn (gen_anddi3 (tem2, tem, const2_rtx)); in sparc_emit_float_lib_cmp() 8525 return gen_rtx_fmt_ee (new_comparison, VOIDmode, tem2, const0_rtx); in sparc_emit_float_lib_cmp()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| H A D | sse.md | 13318 rtx mask, tem1, tem2; 13327 tem2 = gen_reg_rtx (QImode); 13328 emit_insn (gen_kashiftqi (tem2, operands[2], 13333 tem2 = gen_reg_rtx (HImode); 13334 emit_insn (gen_kashifthi (tem2, lowpart_subreg (HImode, operands[2], 13337 tem2 = lowpart_subreg (QImode, tem2, HImode); 13339 emit_insn (gen_kiorqi (operands[0], tem1, tem2));
|