Home
last modified time | relevance | path

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

/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/
A Dfloating_to_chars.cc927 const int mantissa_length = get_mantissa_length(fd); in __floating_to_chars_shortest() local
928 const int scientific_exponent = fd.exponent + mantissa_length - 1; in __floating_to_chars_shortest()
946 int lower_bound = -(mantissa_length + 3); in __floating_to_chars_shortest()
948 if (mantissa_length == 1) in __floating_to_chars_shortest()
963 int expected_output_length = fd.sign + mantissa_length; in __floating_to_chars_shortest()
964 if (mantissa_length > 1) in __floating_to_chars_shortest()
994 int expected_output_length = fd.sign + mantissa_length + fd.exponent; in __floating_to_chars_shortest()
1063 const int whole_digits = max<int>(mantissa_length + fd.exponent, 1); in __floating_to_chars_shortest()
1068 if (mantissa_length <= -fd.exponent) in __floating_to_chars_shortest()
1077 const int leading_zeros = -fd.exponent - mantissa_length; in __floating_to_chars_shortest()

Completed in 5 milliseconds