Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/charconv/charconv.msvc/
H A Dtest.cpp658 const int stdio_ret = sprintf_s(stdio_buffer, size(stdio_buffer), "%.0f", input); in test_floating_prefix() local
659 assert_message_bits(stdio_ret != -1, "stdio_ret", bits); in test_floating_prefix()
741 int stdio_ret = sprintf_s(stdio_buffer, size(stdio_buffer), "%.*f", precision, input); in test_floating_precision_prefix() local
742 assert_message_bits(stdio_ret != -1, "sprintf_s fixed precision", bits); in test_floating_precision_prefix()
752 stdio_ret = sprintf_s(stdio_buffer, size(stdio_buffer), "%.*e", precision, input); in test_floating_precision_prefix()
753 assert_message_bits(stdio_ret != -1, "sprintf_s scientific precision", bits); in test_floating_precision_prefix()
763 stdio_ret = sprintf_s(general_stdio_buffer, size(general_stdio_buffer), "%.5000g", input); in test_floating_precision_prefix()
764 assert_message_bits(stdio_ret != -1, "sprintf_s general precision", bits); in test_floating_precision_prefix()