Searched refs:float_inf (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/utilities/charconv/charconv.msvc/ |
| H A D | float_from_chars_test_cases.hpp | 128 {"1e+1000", chars_format::scientific, 7, errc::result_out_of_range, float_inf}, 130 {"1.ffffffp+127", chars_format::hex, 13, errc::result_out_of_range, float_inf}, 131 {"1e+2000", chars_format::scientific, 7, errc::result_out_of_range, float_inf}, 133 {"1e+9999", chars_format::scientific, 7, errc::result_out_of_range, float_inf}, 135 {"10e+5199", chars_format::scientific, 8, errc::result_out_of_range, float_inf},
|
| H A D | float_to_chars_test_cases.hpp | 51 {float_inf, chars_format::scientific, "inf"}, 52 {-float_inf, chars_format::scientific, "-inf"}, 63 {float_inf, chars_format::fixed, "inf"}, 64 {-float_inf, chars_format::fixed, "-inf"}, 75 {float_inf, chars_format::general, "inf"}, 76 {-float_inf, chars_format::general, "-inf"}, 87 {float_inf, chars_format{}, "inf"}, 88 {-float_inf, chars_format{}, "-inf"}, 99 {float_inf, chars_format::hex, "inf"}, 100 {-float_inf, chars_format::hex, "-inf"},
|
| H A D | float_hex_precision_to_chars_test_cases.hpp | 16 {float_inf, chars_format::hex, 4, "inf"}, 17 {-float_inf, chars_format::hex, 4, "-inf"},
|
| H A D | test.hpp | 13 inline constexpr float float_inf = numeric_limits<float>::infinity(); variable
|
| H A D | float_fixed_precision_to_chars_test_cases.hpp | 51 {float_inf, chars_format::fixed, 4, "inf"}, 52 {-float_inf, chars_format::fixed, 4, "-inf"},
|
| H A D | float_scientific_precision_to_chars_test_cases.hpp | 51 {float_inf, chars_format::scientific, 4, "inf"}, 52 {-float_inf, chars_format::scientific, 4, "-inf"},
|
| H A D | float_general_precision_to_chars_test_cases.hpp | 25 {float_inf, chars_format::general, 4, "inf"}, 26 {-float_inf, chars_format::general, 4, "-inf"},
|