Searched refs:simple_numbers_loop (Results 1 – 1 of 1) sorted by relevance
/linux/lib/tests/ |
H A D | scanf_kunit.c | 188 #define simple_numbers_loop(T, gen_fmt, scan_fmt, fn) \ macro 205 simple_numbers_loop(unsigned long long, "%llu", "llu", check_ull); in numbers_simple() 206 simple_numbers_loop(long long, "%lld", "lld", check_ll); in numbers_simple() 207 simple_numbers_loop(long long, "%lld", "lli", check_ll); in numbers_simple() 208 simple_numbers_loop(unsigned long long, "%llx", "llx", check_ull); in numbers_simple() 209 simple_numbers_loop(long long, "%llx", "llx", check_ll); in numbers_simple() 210 simple_numbers_loop(long long, "0x%llx", "lli", check_ll); in numbers_simple() 211 simple_numbers_loop(unsigned long long, "0x%llx", "llx", check_ull); in numbers_simple() 212 simple_numbers_loop(long long, "0x%llx", "llx", check_ll); in numbers_simple() 214 simple_numbers_loop(unsigned long, "%lu", "lu", check_ulong); in numbers_simple() [all …]
|