Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/test/dfsan/
H A Dcustom.cpp1906 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()
1913 test_sprintf_chunk("0xdeadbeefdeadbeef", "%p", 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()
1925 test_sprintf_chunk("0.1234567891234560", "%.16Lf", in test_sprintf()
[all …]