Symbol: test_simple_strtoxx
lib/tests/scanf_kunit.c
715
test_simple_strtoxx(unsigned long long, simple_strtoull, "%llu", 10);
lib/tests/scanf_kunit.c
716
test_simple_strtoxx(unsigned long long, simple_strtoull, "%llu", 0);
lib/tests/scanf_kunit.c
717
test_simple_strtoxx(unsigned long long, simple_strtoull, "%llx", 16);
lib/tests/scanf_kunit.c
718
test_simple_strtoxx(unsigned long long, simple_strtoull, "0x%llx", 16);
lib/tests/scanf_kunit.c
719
test_simple_strtoxx(unsigned long long, simple_strtoull, "0x%llx", 0);
lib/tests/scanf_kunit.c
724
test_simple_strtoxx(long long, simple_strtoll, "%lld", 10);
lib/tests/scanf_kunit.c
725
test_simple_strtoxx(long long, simple_strtoll, "%lld", 0);
lib/tests/scanf_kunit.c
726
test_simple_strtoxx(long long, simple_strtoll, "%llx", 16);
lib/tests/scanf_kunit.c
727
test_simple_strtoxx(long long, simple_strtoll, "0x%llx", 16);
lib/tests/scanf_kunit.c
728
test_simple_strtoxx(long long, simple_strtoll, "0x%llx", 0);
lib/tests/scanf_kunit.c
733
test_simple_strtoxx(unsigned long, simple_strtoul, "%lu", 10);
lib/tests/scanf_kunit.c
734
test_simple_strtoxx(unsigned long, simple_strtoul, "%lu", 0);
lib/tests/scanf_kunit.c
735
test_simple_strtoxx(unsigned long, simple_strtoul, "%lx", 16);
lib/tests/scanf_kunit.c
736
test_simple_strtoxx(unsigned long, simple_strtoul, "0x%lx", 16);
lib/tests/scanf_kunit.c
737
test_simple_strtoxx(unsigned long, simple_strtoul, "0x%lx", 0);
lib/tests/scanf_kunit.c
742
test_simple_strtoxx(long, simple_strtol, "%ld", 10);
lib/tests/scanf_kunit.c
743
test_simple_strtoxx(long, simple_strtol, "%ld", 0);
lib/tests/scanf_kunit.c
744
test_simple_strtoxx(long, simple_strtol, "%lx", 16);
lib/tests/scanf_kunit.c
745
test_simple_strtoxx(long, simple_strtol, "0x%lx", 16);
lib/tests/scanf_kunit.c
746
test_simple_strtoxx(long, simple_strtol, "0x%lx", 0);