Searched refs:tmpmode (Results 1 – 10 of 10) sorted by relevance
/openbsd/gnu/gcc/gcc/ |
H A D | explow.c | 1481 enum machine_mode tmpmode; in hard_function_value() local 1487 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT); in hard_function_value() 1488 tmpmode != VOIDmode; in hard_function_value() 1489 tmpmode = GET_MODE_WIDER_MODE (tmpmode)) in hard_function_value() 1492 if (GET_MODE_SIZE (tmpmode) >= bytes) in hard_function_value() 1497 gcc_assert (tmpmode != VOIDmode); in hard_function_value() 1499 PUT_MODE (val, tmpmode); in hard_function_value()
|
H A D | stmt.c | 1622 enum machine_mode tmpmode, result_reg_mode; in expand_return() local 1681 tmpmode = GET_MODE (result_rtl); in expand_return() 1682 if (tmpmode == BLKmode) in expand_return() 1688 tmpmode != VOIDmode; in expand_return() 1689 tmpmode = GET_MODE_WIDER_MODE (tmpmode)) in expand_return() 1691 if (GET_MODE_SIZE (tmpmode) >= bytes) in expand_return() 1695 gcc_assert (tmpmode != VOIDmode); in expand_return() 1697 PUT_MODE (result_rtl, tmpmode); in expand_return() 1703 result_reg_mode = tmpmode; in expand_return() 1710 if (tmpmode != result_reg_mode) in expand_return() [all …]
|
/openbsd/usr.bin/rsync/ |
H A D | mktemp.c | 40 enum tmpmode { enum 75 mktemp_internalat(int pfd, char *path, int slen, enum tmpmode mode, in mktemp_internalat()
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | explow.c | 1678 enum machine_mode tmpmode; local 1684 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT); 1685 tmpmode != VOIDmode; 1686 tmpmode = GET_MODE_WIDER_MODE (tmpmode)) 1689 if (GET_MODE_SIZE (tmpmode) >= bytes) 1694 if (tmpmode == VOIDmode) 1697 PUT_MODE (val, tmpmode);
|
H A D | stmt.c | 3131 enum machine_mode tmpmode, result_reg_mode; local 3187 for (tmpmode = GET_CLASS_NARROWEST_MODE (MODE_INT); 3188 tmpmode != VOIDmode; 3189 tmpmode = GET_MODE_WIDER_MODE (tmpmode)) 3191 if (GET_MODE_SIZE (tmpmode) >= bytes) 3195 if (tmpmode == VOIDmode) 3198 PUT_MODE (result_rtl, tmpmode); 3200 if (GET_MODE_SIZE (tmpmode) < GET_MODE_SIZE (word_mode)) 3203 result_reg_mode = tmpmode; 3211 if (tmpmode != result_reg_mode) [all …]
|
H A D | ChangeLog.0 | 7807 n_regs, and tmpmode.
|
/openbsd/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/ |
H A D | FTP.pm | 1285 my $tmpmode = $mode; 1286 my $tmp = $rwx[$tmpmode & 7]; 1287 $tmpmode >>= 3; 1288 $tmp = $rwx[$tmpmode & 7] . $tmp; 1289 $tmpmode >>= 3; 1290 $tmp = $rwx[$tmpmode & 7] . $tmp;
|
/openbsd/usr.bin/ssh/ |
H A D | sftp-client.c | 1874 mode_t mode = 0777, tmpmode = mode; in download_dir_internal() local 1900 tmpmode = mode | (S_IWUSR|S_IXUSR); in download_dir_internal() 1906 if (mkdir(dst, tmpmode) == -1 && errno != EEXIST) { in download_dir_internal() 1978 if (mode != tmpmode && chmod(dst, mode) == -1) in download_dir_internal()
|
/openbsd/gnu/usr.bin/gcc/gcc/config/i386/ |
H A D | i386.c | 2053 enum machine_mode tmpmode; local 2134 tmpmode = mode_for_size ((bytes - i * 8) * BITS_PER_UNIT, MODE_INT, 0); 2136 tmpmode = SImode; 2138 tmpmode = DImode; 2140 if (tmpmode == BLKmode) 2141 tmpmode = DImode; 2143 gen_rtx_REG (tmpmode, *intreg), 2163 tmpmode = TImode; 2165 tmpmode = DImode; 2167 gen_rtx_REG (tmpmode, [all …]
|
/openbsd/gnu/gcc/gcc/config/i386/ |
H A D | i386.c | 3292 enum machine_mode tmpmode; in construct_container() local 3406 tmpmode = mode_for_size ((bytes - i * 8) * BITS_PER_UNIT, MODE_INT, 0); in construct_container() 3408 tmpmode = SImode; in construct_container() 3410 tmpmode = DImode; in construct_container() 3412 if (tmpmode == BLKmode) in construct_container() 3413 tmpmode = DImode; in construct_container() 3415 gen_rtx_REG (tmpmode, *intreg), in construct_container() 3435 tmpmode = TImode; in construct_container() 3437 tmpmode = DImode; in construct_container() 3439 gen_rtx_REG (tmpmode, in construct_container() [all …]
|