Searched refs:mantissa_length (Results 1 – 1 of 1) sorted by relevance
935 const int mantissa_length = get_mantissa_length(fd); in __floating_to_chars_shortest() local936 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()