Searched refs:simple_numbers_loop (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/lib/ |
H A D | test_scanf.c | 202 #define simple_numbers_loop(T, gen_fmt, scan_fmt, fn) \ macro 219 simple_numbers_loop(unsigned long long, "%llu", "llu", check_ull); in numbers_simple() 220 simple_numbers_loop(long long, "%lld", "lld", check_ll); in numbers_simple() 221 simple_numbers_loop(long long, "%lld", "lli", check_ll); in numbers_simple() 222 simple_numbers_loop(unsigned long long, "%llx", "llx", check_ull); in numbers_simple() 223 simple_numbers_loop(long long, "%llx", "llx", check_ll); in numbers_simple() 224 simple_numbers_loop(long long, "0x%llx", "lli", check_ll); in numbers_simple() 225 simple_numbers_loop(unsigned long long, "0x%llx", "llx", check_ull); in numbers_simple() 226 simple_numbers_loop(long long, "0x%llx", "llx", check_ll); in numbers_simple() 228 simple_numbers_loop(unsigned long, "%lu", "lu", check_ulong); in numbers_simple() [all …]
|