Lines Matching refs:test_simple_strtoxx
708 #define test_simple_strtoxx(T, fn, gen_fmt, base) \ macro
723 test_simple_strtoxx(unsigned long long, simple_strtoull, "%llu", 10); in test_simple_strtoull()
724 test_simple_strtoxx(unsigned long long, simple_strtoull, "%llu", 0); in test_simple_strtoull()
725 test_simple_strtoxx(unsigned long long, simple_strtoull, "%llx", 16); in test_simple_strtoull()
726 test_simple_strtoxx(unsigned long long, simple_strtoull, "0x%llx", 16); in test_simple_strtoull()
727 test_simple_strtoxx(unsigned long long, simple_strtoull, "0x%llx", 0); in test_simple_strtoull()
732 test_simple_strtoxx(long long, simple_strtoll, "%lld", 10); in test_simple_strtoll()
733 test_simple_strtoxx(long long, simple_strtoll, "%lld", 0); in test_simple_strtoll()
734 test_simple_strtoxx(long long, simple_strtoll, "%llx", 16); in test_simple_strtoll()
735 test_simple_strtoxx(long long, simple_strtoll, "0x%llx", 16); in test_simple_strtoll()
736 test_simple_strtoxx(long long, simple_strtoll, "0x%llx", 0); in test_simple_strtoll()
741 test_simple_strtoxx(unsigned long, simple_strtoul, "%lu", 10); in test_simple_strtoul()
742 test_simple_strtoxx(unsigned long, simple_strtoul, "%lu", 0); in test_simple_strtoul()
743 test_simple_strtoxx(unsigned long, simple_strtoul, "%lx", 16); in test_simple_strtoul()
744 test_simple_strtoxx(unsigned long, simple_strtoul, "0x%lx", 16); in test_simple_strtoul()
745 test_simple_strtoxx(unsigned long, simple_strtoul, "0x%lx", 0); in test_simple_strtoul()
750 test_simple_strtoxx(long, simple_strtol, "%ld", 10); in test_simple_strtol()
751 test_simple_strtoxx(long, simple_strtol, "%ld", 0); in test_simple_strtol()
752 test_simple_strtoxx(long, simple_strtol, "%lx", 16); in test_simple_strtol()
753 test_simple_strtoxx(long, simple_strtol, "0x%lx", 16); in test_simple_strtol()
754 test_simple_strtoxx(long, simple_strtol, "0x%lx", 0); in test_simple_strtol()