| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | expprint.c | 64 unsigned tem; in print_subexp_standard() local 158 for (tem = 0; tem < nargs; tem++) in print_subexp_standard() 160 if (tem != 0) in print_subexp_standard() 216 for (tem = 0; tem < nargs; tem++) in print_subexp_standard() 240 tem = 0; in print_subexp_standard() 254 while (tem < nargs) in print_subexp_standard() 260 tem = 0; in print_subexp_standard() 265 tempstr[tem++] = in print_subexp_standard() 271 if (tem > 0) in print_subexp_standard() 279 for (tem = 0; tem < nargs; tem++) in print_subexp_standard() [all …]
|
| H A D | eval.c | 184 int tem = longest_to_int (exp->elts[pc + 1].longconst); in get_label() local 185 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1); in get_label() 385 int tem, tem2, tem3; in evaluate_subexp_standard() local 406 tem = longest_to_int (exp->elts[pc + 2].longconst); in evaluate_subexp_standard() 407 (*pos) += 4 + BYTES_TO_EXP_ELEM (tem + 1); in evaluate_subexp_standard() 468 tem = longest_to_int (exp->elts[pc + 1].longconst); in evaluate_subexp_standard() 469 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1); in evaluate_subexp_standard() 472 return value_string (&exp->elts[pc + 2].string, tem); in evaluate_subexp_standard() 475 tem = longest_to_int (exp->elts[pc + 1].longconst); in evaluate_subexp_standard() 476 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1); in evaluate_subexp_standard() [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | print-rtl.c | 119 rtx tem; local 554 for (tem = XEXP (in_rtx, 0); tem != 0; tem = NEXT_INSN (tem)) 557 print_inline_rtx (outfile, tem, 4); 560 tem = XEXP (in_rtx, 1); 561 if (tem) 564 for (; tem != 0; tem = NEXT_INSN (tem)) 567 print_inline_rtx (outfile, tem, 4); 570 tem = XEXP (in_rtx, 2); 571 if (tem) 574 for (; tem != 0; tem = NEXT_INSN (tem)) [all …]
|
| H A D | expmed.c | 2415 rtx accum, tem; local 2461 tem = expand_shift (LSHIFT_EXPR, mode, op0, 2463 accum = force_operand (gen_rtx_PLUS (mode, accum, tem), 2470 tem = expand_shift (LSHIFT_EXPR, mode, op0, 2472 accum = force_operand (gen_rtx_MINUS (mode, accum, tem), 2499 tem = expand_shift (LSHIFT_EXPR, mode, accum, 2501 accum = force_operand (gen_rtx_PLUS (mode, accum, tem), 2508 tem = expand_shift (LSHIFT_EXPR, mode, accum, 2510 accum = force_operand (gen_rtx_MINUS (mode, tem, accum), 2512 : preserve ? 0 : tem)); [all …]
|
| H A D | simplify-rtx.c | 111 rtx tem; local 116 tem = op0, op0 = op1, op1 = tem; 119 tem = simplify_binary_operation (code, mode, op0, op1); 120 if (tem) 121 return tem; 128 tem = simplify_plus_minus (code, mode, op0, op1, 1); 129 if (tem) 130 return tem; 181 rtx tem; local 184 if ((tem = simplify_unary_operation (code, mode, op, op_mode)) != 0) [all …]
|
| H A D | dbxout.c | 793 tree tem; local 797 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem)) 801 if (tem == error_mark_node || TREE_TYPE (tem) == error_mark_node) 805 if (TREE_CODE (tem) == TYPE_DECL 808 || (TREE_CODE (tem) == FIELD_DECL 809 && (! host_integerp (bit_position (tem), 0) 810 || ! DECL_SIZE (tem) 811 || ! host_integerp (DECL_SIZE (tem), 1))) 813 || DECL_IGNORED_P (tem)) 816 else if (TREE_CODE (tem) != CONST_DECL) [all …]
|
| H A D | unroll.c | 241 rtx insn, sequence, pattern, tem; local 1247 tem = get_label_from_map (map, 1250 SET_SRC (pattern) = gen_rtx_LABEL_REF (VOIDmode, tem); 1254 JUMP_LABEL (insn) = tem; 1255 LABEL_NUSES (tem)++; 1797 rtx set, tem, copy = NULL_RTX; local 2030 tem = gen_reg_rtx (GET_MODE (giv_src_reg)); 2031 giv_dest_reg = tem; 2032 map->reg_map[regno] = tem; 2033 record_base_value (REGNO (tem), [all …]
|
| H A D | reload.c | 3729 rtx tem; local 3731 tem = substed_operand[commutative]; 3733 substed_operand[commutative + 1] = tem; 3734 tem = recog_data.operand[commutative]; 3736 recog_data.operand[commutative + 1] = tem; 3737 tem = *recog_data.operand_loc[commutative]; 3740 *recog_data.operand_loc[commutative + 1] = tem; 4503 rtx tem = x; local 4505 i = find_reloads_address (GET_MODE (x), &tem, XEXP (x, 0), &XEXP (x, 0), 4510 return tem; [all …]
|
| H A D | sdbout.c | 1131 tree tem; local 1210 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem)) 1211 if (host_integerp (TREE_VALUE (tem), 0)) 1213 PUT_SDB_DEF (IDENTIFIER_POINTER (TREE_PURPOSE (tem))); 1214 PUT_SDB_INT_VAL (tree_low_cst (TREE_VALUE (tem), 0)); 1221 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem)) 1228 if (TREE_CODE (tem) == FIELD_DECL 1229 && DECL_NAME (tem) 1230 && DECL_SIZE (tem) 1231 && host_integerp (DECL_SIZE (tem), 1) [all …]
|
| H A D | loop.c | 632 int tem; local 862 else if ((tem = loop_invariant_p (loop, src)) 957 m->cond = ((tem | tem1 | tem2) > 1); 2105 rtx tem; 2108 tem = expand_simple_binop 2114 if (tem == 0) 2116 if (tem != reg) 2117 emit_move_insn (reg, tem); 3344 int tem = loop_invariant_p (loop, XEXP (x, i)); local 3345 if (tem == 0) [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | fold-const.c | 1137 tree tem = strip_float_extensions (t); in negate_expr_p() local 1138 if (tem != t) in negate_expr_p() 1139 return negate_expr_p (tem); in negate_expr_p() 1176 tree tem; in fold_negate_expr() local 1188 tem = fold_negate_const (t, type); in fold_negate_expr() 1189 if (!TREE_OVERFLOW (tem) in fold_negate_expr() 1191 return tem; in fold_negate_expr() 1195 tem = fold_negate_const (t, type); in fold_negate_expr() 1197 if (! TREE_OVERFLOW (tem) || ! flag_trapping_math) in fold_negate_expr() 1198 return tem; in fold_negate_expr() [all …]
|
| H A D | expmed.c | 2955 rtx insn, accum, tem; in expand_mult_const() local 3000 tem = expand_shift (LSHIFT_EXPR, mode, op0, in expand_mult_const() 3003 accum = force_operand (gen_rtx_PLUS (mode, accum, tem), in expand_mult_const() 3009 tem = expand_shift (LSHIFT_EXPR, mode, op0, in expand_mult_const() 3012 accum = force_operand (gen_rtx_MINUS (mode, accum, tem), in expand_mult_const() 3037 tem = expand_shift (LSHIFT_EXPR, mode, accum, in expand_mult_const() 3040 accum = force_operand (gen_rtx_PLUS (mode, accum, tem), in expand_mult_const() 3046 tem = expand_shift (LSHIFT_EXPR, mode, accum, in expand_mult_const() 3049 accum = force_operand (gen_rtx_MINUS (mode, tem, accum), in expand_mult_const() 3051 ? add_target : (optimize ? 0 : tem))); in expand_mult_const() [all …]
|
| H A D | simplify-rtx.c | 116 rtx tem; in simplify_gen_binary() local 119 tem = simplify_binary_operation (code, mode, op0, op1); in simplify_gen_binary() 120 if (tem) in simplify_gen_binary() 121 return tem; in simplify_gen_binary() 126 tem = op0, op0 = op1, op1 = tem; in simplify_gen_binary() 192 rtx tem = simplify_subreg (GET_MODE (x), c, cmode, offset); in avoid_constant_pool_reference() local 193 if (tem && CONSTANT_P (tem)) in avoid_constant_pool_reference() 194 return tem; in avoid_constant_pool_reference() 218 rtx tem; in simplify_gen_unary() local 221 if ((tem = simplify_unary_operation (code, mode, op, op_mode)) != 0) in simplify_gen_unary() [all …]
|
| H A D | reload.c | 3777 rtx tem; in find_reloads() local 3779 tem = substed_operand[commutative]; in find_reloads() 3781 substed_operand[commutative + 1] = tem; in find_reloads() 3782 tem = recog_data.operand[commutative]; in find_reloads() 3784 recog_data.operand[commutative + 1] = tem; in find_reloads() 3785 tem = *recog_data.operand_loc[commutative]; in find_reloads() 3788 *recog_data.operand_loc[commutative + 1] = tem; in find_reloads() 3858 rtx tem = force_const_mem (operand_mode[i], in find_reloads() local 3860 tem = gen_rtx_PLUS (operand_mode[i], in find_reloads() 3861 XEXP (recog_data.operand[i], 0), tem); in find_reloads() [all …]
|
| H A D | dbxout.c | 1394 tree tem; in dbxout_type_fields() local 1398 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem)) in dbxout_type_fields() 1402 if (tem == error_mark_node || TREE_TYPE (tem) == error_mark_node) in dbxout_type_fields() 1406 if (TREE_CODE (tem) == TYPE_DECL in dbxout_type_fields() 1408 || DECL_IGNORED_P (tem) in dbxout_type_fields() 1411 || (TREE_CODE (tem) == FIELD_DECL in dbxout_type_fields() 1412 && (! host_integerp (bit_position (tem), 0) in dbxout_type_fields() 1413 || ! DECL_SIZE (tem) in dbxout_type_fields() 1414 || ! host_integerp (DECL_SIZE (tem), 1)))) in dbxout_type_fields() 1417 else if (TREE_CODE (tem) != CONST_DECL) in dbxout_type_fields() [all …]
|
| H A D | sdbout.c | 1103 tree tem; in sdbout_one_type() local 1180 for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem)) in sdbout_one_type() 1181 if (host_integerp (TREE_VALUE (tem), 0)) in sdbout_one_type() 1183 PUT_SDB_DEF (IDENTIFIER_POINTER (TREE_PURPOSE (tem))); in sdbout_one_type() 1184 PUT_SDB_INT_VAL (tree_low_cst (TREE_VALUE (tem), 0)); in sdbout_one_type() 1191 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem)) in sdbout_one_type() 1198 if (TREE_CODE (tem) == FIELD_DECL in sdbout_one_type() 1199 && DECL_NAME (tem) in sdbout_one_type() 1200 && DECL_SIZE (tem) in sdbout_one_type() 1201 && host_integerp (DECL_SIZE (tem), 1) in sdbout_one_type() [all …]
|
| H A D | dojump.c | 800 rtx tem; in compare_from_rtx() local 807 tem = op0; in compare_from_rtx() 809 op1 = tem; in compare_from_rtx() 816 tem = simplify_relational_operation (code, VOIDmode, mode, op0, op1); in compare_from_rtx() 817 if (tem) in compare_from_rtx() 819 if (CONSTANT_P (tem)) in compare_from_rtx() 820 return tem; in compare_from_rtx() 822 if (COMPARISON_P (tem)) in compare_from_rtx() 824 code = GET_CODE (tem); in compare_from_rtx() 825 op0 = XEXP (tem, 0); in compare_from_rtx() [all …]
|
| H A D | combine.c | 3822 rtx tem = XEXP (x, 0); in find_split_point() local 3824 SUBST (XEXP (x, 1), tem); in find_split_point() 4346 rtx tem = inner_op0; in combine_simplify_rtx() local 4348 inner_op1 = tem; in combine_simplify_rtx() 4609 rtx tem = simplify_binary_operation (MULT, mode, in combine_simplify_rtx() local 4612 if (tem) in combine_simplify_rtx() 4613 return simplify_gen_binary (DIV, mode, tem, XEXP (XEXP (x, 0), 1)); in combine_simplify_rtx() 5605 rtx tem; in expand_compound_operation() local 5776 tem = gen_lowpart (mode, XEXP (x, 0)); in expand_compound_operation() 5777 if (!tem || GET_CODE (tem) == CLOBBER) in expand_compound_operation() [all …]
|
| H A D | explow.c | 84 rtx tem; in plus_constant() local 122 tem in plus_constant() 126 if (memory_address_p (GET_MODE (tem), XEXP (tem, 0))) in plus_constant() 127 return tem; in plus_constant() 208 rtx tem; in eliminate_constant_term() local 215 && 0 != (tem = simplify_binary_operation (PLUS, GET_MODE (x), *constptr, in eliminate_constant_term() 217 && GET_CODE (tem) == CONST_INT) in eliminate_constant_term() 219 *constptr = tem; in eliminate_constant_term() 223 tem = const0_rtx; in eliminate_constant_term() 224 x0 = eliminate_constant_term (XEXP (x, 0), &tem); in eliminate_constant_term() [all …]
|
| /openbsd-src/gnu/usr.bin/texinfo/makeinfo/ |
| H A D | xref.c | 122 char *tem; in cm_xref() local 269 tem = expansion (arg1, 0); /* expand @-commands in node */ in cm_xref() 271 add_anchor_name (tem, 1); in cm_xref() 272 free (tem); in cm_xref() 303 tem = expansion (arg1, 0); in cm_xref() 305 add_anchor_name (tem, 1); in cm_xref() 306 free (tem); in cm_xref() 326 tem = expansion (arg1, 0); in cm_xref() 328 add_anchor_name (tem, 1); in cm_xref() 329 free (tem); in cm_xref() [all …]
|
| H A D | node.c | 493 char *tem = expand_node_name (node); in add_html_names() local 494 char *otem = xstrdup (tem); in add_html_names() 523 canon_white (tem); in add_html_names() 525 add_anchor_name (tem, 0); in add_html_names() 528 free (tem); in add_html_names() 546 char *tem; in cm_node() local 600 tem = expand_node_name (current_node); in cm_node() 601 fname_for_prev_node = nodename_to_filename (tem); in cm_node() 602 free (tem); in cm_node() 606 tem = expand_node_name (node); in cm_node() [all …]
|
| /openbsd-src/gnu/lib/libreadline/ |
| H A D | input.c | 170 register int tem, result; in rl_gather_tyi() local 203 tem = fcntl (tty, F_GETFL, 0); in rl_gather_tyi() 205 fcntl (tty, F_SETFL, (tem | O_NDELAY)); in rl_gather_tyi() 208 fcntl (tty, F_SETFL, tem); in rl_gather_tyi() 219 tem = ibuffer_space (); in rl_gather_tyi() 221 if (chars_avail > tem) in rl_gather_tyi() 222 chars_avail = tem; in rl_gather_tyi() 228 if (tem < ibuffer_len) in rl_gather_tyi()
|
| /openbsd-src/gnu/usr.bin/binutils/ld/emultempl/ |
| H A D | armelf.em | 89 bfd *tem; 98 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next) 99 tem->output_has_begun = FALSE; 102 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next) 103 tem->output_has_begun = FALSE;
|
| /openbsd-src/gnu/usr.bin/texinfo/util/ |
| H A D | texindex.c | 457 int tem = compare_field (&keyfields[i], start1, length1, in compare_full() 460 if (tem) in compare_full() 463 return -tem; in compare_full() 464 return tem; in compare_full() 481 int tem; in compare_prepared() 488 tem = 1; in compare_prepared() 490 tem = -1; in compare_prepared() 493 tem = line1->key.number - line2->key.number; in compare_prepared() 495 tem = compare_field (keyfields, line1->key.text, line1->keylen, 0, in compare_prepared() 497 if (tem) in compare_prepared() 454 int tem = compare_field (&keyfields[i], start1, length1, compare_full() local 478 int tem; compare_prepared() local 513 int tem = compare_field (&keyfields[i], start1, length1, compare_prepared() local 546 int tem = compare_field (&keyfields[i], start1, length1, pos1, compare_general() local [all...] |
| /openbsd-src/gnu/usr.bin/binutils-2.17/ld/emultempl/ |
| H A D | armelf.em | 104 bfd *tem; 113 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next) 114 tem->output_has_begun = FALSE; 117 for (tem = link_info.input_bfds; tem != NULL; tem = tem->link_next) 118 tem->output_has_begun = FALSE;
|