Searched refs:frac_part (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/format/internal/
H A Dfloats.d890 ulong frac_part = mnt & ((1L << (T.mant_dig - 1 - exp)) - 1);
900 tail = frac_part & ((1L << (3 - exp)) - 1);
902 frac_part >>= 3 - exp;
942 if (frac_part != 0)
960 while (frac_part != 0)
963 frac_part *= 10;
972 frac_part += tail >> tail_length;
977 auto tmp = frac_part >> (T.mant_dig - 1 - exp);
978 frac_part &= ((1L << (T.mant_dig - 1 - exp)) - 1);
996 while (frac_part !
[all...]
/netbsd-current/external/bsd/bc/dist/
H A Dnumber.c1418 bc_num int_part, frac_part, base, cur_dig, t_num, max_o_digit; local
1458 bc_init_num (&frac_part);
1461 bc_sub (num, int_part, &frac_part, 0);
1464 frac_part->n_sign = PLUS;
1505 bc_multiply (frac_part, base, &frac_part, num->n_scale);
1506 fdigit = bc_num2long (frac_part);
1508 bc_sub (frac_part, int_part, &frac_part, 0);
1522 bc_free_num (&frac_part);
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-math-opts.c1721 REAL_VALUE_TYPE frac_part; local
1724 real_arithmetic (&frac_part, MINUS_EXPR, &exp, &whole_part);
1736 if (!representable_as_half_series_p (frac_part, max_depth, &synth_info))
1753 frac_part = ceil_fract;
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-math-opts.cc1855 REAL_VALUE_TYPE frac_part; local
1858 real_arithmetic (&frac_part, MINUS_EXPR, &exp, &whole_part);
1870 if (!representable_as_half_series_p (frac_part, max_depth, &synth_info))
1887 frac_part = ceil_fract;

Completed in 203 milliseconds