Lines Matching refs:max_digits
1517 size_t max_digits; in real_to_decimal_for_mode() local
1555 max_digits = SIGNIFICAND_BITS * M_LOG10_2; in real_to_decimal_for_mode()
1556 if (digits == 0 || digits > max_digits) in real_to_decimal_for_mode()
1557 digits = max_digits; in real_to_decimal_for_mode()
1563 for (max_digits = 1; dec_exp ; max_digits++) in real_to_decimal_for_mode()
1567 max_digits = buf_size - 1 - 1 - 2 - max_digits - 1; in real_to_decimal_for_mode()
1568 gcc_assert (max_digits <= buf_size); in real_to_decimal_for_mode()
1569 if (digits > max_digits) in real_to_decimal_for_mode()
1570 digits = max_digits; in real_to_decimal_for_mode()
1593 m = floor_log2 (max_digits); in real_to_decimal_for_mode()
1834 size_t max_digits; in real_to_hexadecimal() local
1868 max_digits = buf_size - strlen (exp_buf) - r->sign - 4 - 1; in real_to_hexadecimal()
1869 gcc_assert (max_digits <= buf_size); in real_to_hexadecimal()
1870 if (digits > max_digits) in real_to_hexadecimal()
1871 digits = max_digits; in real_to_hexadecimal()