Home
last modified time | relevance | path

Searched refs:mantissa_length (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dfloating_to_chars.cc935 const int mantissa_length = get_mantissa_length(fd); in __floating_to_chars_shortest() local
936 const int scientific_exponent = fd.exponent + mantissa_length - 1; in __floating_to_chars_shortest()
954 int lower_bound = -(mantissa_length + 3); in __floating_to_chars_shortest()
956 if (mantissa_length == 1) in __floating_to_chars_shortest()
971 int expected_output_length = fd.sign + mantissa_length; in __floating_to_chars_shortest()
972 if (mantissa_length > 1) in __floating_to_chars_shortest()
1002 int expected_output_length = fd.sign + mantissa_length + fd.exponent; in __floating_to_chars_shortest()
1071 const int whole_digits = max<int>(mantissa_length + fd.exponent, 1); in __floating_to_chars_shortest()
1076 if (mantissa_length <= -fd.exponent) in __floating_to_chars_shortest()
1085 const int leading_zeros = -fd.exponent - mantissa_length; in __floating_to_chars_shortest()