/glibc-2.36/sysdeps/ieee754/ldbl-128ibm/ |
D | s_fromfpl_main.c | 70 bool half_bit, more_bits; in FUNC() local 76 more_bits = false; in FUNC() 82 more_bits = (hx & (h - 1)) != 0; in FUNC() 89 more_bits = true; in FUNC() 118 more_bits |= lo_more_bits; in FUNC() 128 if (lo_more_bits && !more_bits) in FUNC() 133 more_bits = true; in FUNC() 139 more_bits = true; in FUNC() 145 return fromfp_round_and_return (negative, uret, half_bit, more_bits, round, in FUNC()
|
/glibc-2.36/math/ |
D | fromfp.h | 55 fromfp_round (bool negative, uintmax_t x, bool half_bit, bool more_bits, in fromfp_round() argument 61 return x + (!negative && (half_bit || more_bits)); in fromfp_round() 64 return x + (negative && (half_bit || more_bits)); in fromfp_round() 76 return x + (half_bit && ((x & 1) || more_bits)); in fromfp_round() 152 bool more_bits, int round, int exponent, in fromfp_round_and_return() argument 155 uintmax_t uret = fromfp_round (negative, x, half_bit, more_bits, round); in fromfp_round_and_return() 159 if (INEXACT && (half_bit || more_bits)) in fromfp_round_and_return()
|
/glibc-2.36/sysdeps/ieee754/flt-32/ |
D | s_fromfpf_main.c | 60 bool half_bit, more_bits; in FUNC() local 66 more_bits = false; in FUNC() 72 more_bits = (ix & (h - 1)) != 0; in FUNC() 79 more_bits = true; in FUNC() 81 return fromfp_round_and_return (negative, uret, half_bit, more_bits, round, in FUNC()
|
/glibc-2.36/sysdeps/ieee754/dbl-64/ |
D | s_fromfp_main.c | 60 bool half_bit, more_bits; in FUNC() local 66 more_bits = false; in FUNC() 72 more_bits = (ix & (h - 1)) != 0; in FUNC() 79 more_bits = true; in FUNC() 81 return fromfp_round_and_return (negative, uret, half_bit, more_bits, round, in FUNC()
|
/glibc-2.36/sysdeps/ieee754/ldbl-96/ |
D | s_fromfpl_main.c | 59 bool half_bit, more_bits; in FUNC() local 65 more_bits = false; in FUNC() 71 more_bits = (ix & (h - 1)) != 0; in FUNC() 81 more_bits = true; in FUNC() 83 return fromfp_round_and_return (negative, uret, half_bit, more_bits, round, in FUNC()
|
/glibc-2.36/sysdeps/ieee754/ldbl-128/ |
D | s_fromfpl_main.c | 60 bool half_bit, more_bits; in FUNC() local 70 more_bits = (lx & (h - 1)) != 0; in FUNC() 79 more_bits = ((hx & (h - 1)) | lx) != 0; in FUNC() 87 more_bits = true; in FUNC() 89 return fromfp_round_and_return (negative, uret, half_bit, more_bits, round, in FUNC()
|
/glibc-2.36/include/ |
D | rounding-mode.h | 43 round_away (bool negative, bool last_digit_odd, bool half_bit, bool more_bits, in round_away() argument 49 return negative && (half_bit || more_bits); in round_away() 52 return half_bit && (last_digit_odd || more_bits); in round_away() 58 return !negative && (half_bit || more_bits); in round_away()
|
/glibc-2.36/stdlib/ |
D | strtod_l.c | 214 mp_limb_t round_limb, mp_size_t round_bit, int more_bits) in round_and_return() argument 226 more_bits |= (round_limb & ((((mp_limb_t) 1) << round_bit) - 1)) != 0; in round_and_return() 236 more_bits |= retval[i] != 0; in round_and_return() 246 more_bits |= retval[i] != 0; in round_and_return() 247 more_bits |= ((round_limb & ((((mp_limb_t) 1) << round_bit) - 1)) in round_and_return() 273 (more_bits in round_and_return() 304 || more_bits in round_and_return() 318 = (more_bits in round_and_return() 1350 int more_bits; in ____STRTOF_INTERNAL() local 1405 more_bits = 1; in ____STRTOF_INTERNAL() [all …]
|
/glibc-2.36/stdio-common/ |
D | printf_fp.c | 980 bool more_bits; in __printf_fp_l() local 982 more_bits = true; in __printf_fp_l() 985 more_bits = false; in __printf_fp_l() 993 more_bits = lcnt > 0; in __printf_fp_l() 996 more_bits = true; in __printf_fp_l() 999 more_bits, rounding_mode)) in __printf_fp_l()
|
D | printf_fphex.c | 334 bool more_bits = ((next_digit_value & 7) != 0 in __printf_fphex() local 338 next_digit_value >= 8, more_bits, in __printf_fphex()
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.18 | 61754 retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
|