Home
last modified time | relevance | path

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 Dfloat_from_chars_test_cases.hpp128 {"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 Dfloat_to_chars_test_cases.hpp51 {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 Dfloat_hex_precision_to_chars_test_cases.hpp16 {float_inf, chars_format::hex, 4, "inf"},
17 {-float_inf, chars_format::hex, 4, "-inf"},
H A Dtest.hpp13 inline constexpr float float_inf = numeric_limits<float>::infinity(); variable
H A Dfloat_fixed_precision_to_chars_test_cases.hpp51 {float_inf, chars_format::fixed, 4, "inf"},
52 {-float_inf, chars_format::fixed, 4, "-inf"},
H A Dfloat_scientific_precision_to_chars_test_cases.hpp51 {float_inf, chars_format::scientific, 4, "inf"},
52 {-float_inf, chars_format::scientific, 4, "-inf"},
H A Dfloat_general_precision_to_chars_test_cases.hpp25 {float_inf, chars_format::general, 4, "inf"},
26 {-float_inf, chars_format::general, 4, "-inf"},