Home
last modified time | relevance | path

Searched refs:test_integer_to_chars (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/charconv/charconv.msvc/
H A Dtest.cpp186 void test_integer_to_chars(const T value, const optional<int> opt_base, const string_view correct) { in test_integer_to_chars() function
376 void test_integer_to_chars() { in test_integer_to_chars() function
378 test_integer_to_chars(static_cast<T>(0), base, "0"); in test_integer_to_chars()
379 test_integer_to_chars(static_cast<T>(1), base, "1"); in test_integer_to_chars()
382 test_integer_to_chars(static_cast<T>(base * 2 - 1), base, output_max_digit[base]); in test_integer_to_chars()
386test_integer_to_chars(static_cast<T>(p.first), base, p.second[static_cast<size_t>(base)]); in test_integer_to_chars()
391 test_integer_to_chars(static_cast<T>(-1), base, "-1"); in test_integer_to_chars()
395test_integer_to_chars(static_cast<T>(p.first), base, p.second[static_cast<size_t>(base)]); in test_integer_to_chars()
401 test_integer_to_chars(static_cast<T>(42), nullopt, "42"); in test_integer_to_chars()
531 test_integer_to_chars<T>(); in test_integer()