Lines Matching refs:max_digits
1573 size_t max_digits; in real_to_decimal_for_mode() local
1611 max_digits = SIGNIFICAND_BITS * M_LOG10_2; in real_to_decimal_for_mode()
1612 if (digits == 0 || digits > max_digits) in real_to_decimal_for_mode()
1613 digits = max_digits; in real_to_decimal_for_mode()
1619 for (max_digits = 1; dec_exp ; max_digits++) in real_to_decimal_for_mode()
1623 max_digits = buf_size - 1 - 1 - 2 - max_digits - 1; in real_to_decimal_for_mode()
1624 gcc_assert (max_digits <= buf_size); in real_to_decimal_for_mode()
1625 if (digits > max_digits) in real_to_decimal_for_mode()
1626 digits = max_digits; in real_to_decimal_for_mode()
1649 m = floor_log2 (max_digits); in real_to_decimal_for_mode()
1888 size_t max_digits; in real_to_hexadecimal() local
1922 max_digits = buf_size - strlen (exp_buf) - r->sign - 4 - 1; in real_to_hexadecimal()
1923 gcc_assert (max_digits <= buf_size); in real_to_hexadecimal()
1924 if (digits > max_digits) in real_to_hexadecimal()
1925 digits = max_digits; in real_to_hexadecimal()