Home
last modified time | relevance | path

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

/aosp_15_r20/external/compiler-rt/test/dfsan/
H A Dcustom.cc778 void test_sprintf_chunk(const char* expected, const char* format, T arg) { in test_sprintf_chunk() function
846 test_sprintf_chunk("-559038737", "%d", 0xdeadbeef); in test_sprintf()
847 test_sprintf_chunk("3735928559", "%u", 0xdeadbeef); in test_sprintf()
848 test_sprintf_chunk("12345", "%i", 12345); in test_sprintf()
849 test_sprintf_chunk("751", "%o", 0751); in test_sprintf()
850 test_sprintf_chunk("babe", "%x", 0xbabe); in test_sprintf()
851 test_sprintf_chunk("0000BABE", "%.8X", 0xbabe); in test_sprintf()
852 test_sprintf_chunk("-17", "%hhd", 0xdeadbeef); in test_sprintf()
853 test_sprintf_chunk("-16657", "%hd", 0xdeadbeef); in test_sprintf()
854 test_sprintf_chunk("deadbeefdeadbeef", "%lx", 0xdeadbeefdeadbeef); in test_sprintf()
[all …]