Lines Matching refs:test_sprintf_chunk
1820 void test_sprintf_chunk(const char* expected, const char* format, T arg) { in test_sprintf_chunk() function
1904 test_sprintf_chunk("-559038737", "%d", 0xdeadbeef); in test_sprintf()
1905 test_sprintf_chunk("3735928559", "%u", 0xdeadbeef); in test_sprintf()
1906 test_sprintf_chunk("12345", "%i", 12345); in test_sprintf()
1907 test_sprintf_chunk("751", "%o", 0751); in test_sprintf()
1908 test_sprintf_chunk("babe", "%x", 0xbabe); in test_sprintf()
1909 test_sprintf_chunk("0000BABE", "%.8X", 0xbabe); in test_sprintf()
1910 test_sprintf_chunk("-17", "%hhd", 0xdeadbeef); in test_sprintf()
1911 test_sprintf_chunk("-16657", "%hd", 0xdeadbeef); in test_sprintf()
1912 test_sprintf_chunk("deadbeefdeadbeef", "%lx", 0xdeadbeefdeadbeef); in test_sprintf()
1913 test_sprintf_chunk("0xdeadbeefdeadbeef", "%p", in test_sprintf()
1915 test_sprintf_chunk("18446744073709551615", "%ju", (intmax_t) -1); in test_sprintf()
1916 test_sprintf_chunk("18446744073709551615", "%zu", (size_t) -1); in test_sprintf()
1917 test_sprintf_chunk("18446744073709551615", "%tu", (size_t) -1); in test_sprintf()
1919 test_sprintf_chunk("0x1.f9acffa7eb6bfp-4", "%a", 0.123456); in test_sprintf()
1920 test_sprintf_chunk("0X1.F9ACFFA7EB6BFP-4", "%A", 0.123456); in test_sprintf()
1921 test_sprintf_chunk("0.12346", "%.5f", 0.123456); in test_sprintf()
1922 test_sprintf_chunk("0.123456", "%g", 0.123456); in test_sprintf()
1923 test_sprintf_chunk("1.234560e-01", "%e", 0.123456); in test_sprintf()
1924 test_sprintf_chunk("1.234560E-01", "%E", 0.123456); in test_sprintf()
1925 test_sprintf_chunk("0.1234567891234560", "%.16Lf", in test_sprintf()
1928 test_sprintf_chunk("z", "%c", 'z'); in test_sprintf()