Symbol: test_number_prefix
lib/tests/scanf_kunit.c
624
test_number_prefix(long long, "-1 1", "%1lld %lld", 0, 0, 0, check_ll);
lib/tests/scanf_kunit.c
625
test_number_prefix(long, "-1 1", "%1ld %ld", 0, 0, 0, check_long);
lib/tests/scanf_kunit.c
626
test_number_prefix(int, "-1 1", "%1d %d", 0, 0, 0, check_int);
lib/tests/scanf_kunit.c
627
test_number_prefix(short, "-1 1", "%1hd %hd", 0, 0, 0, check_short);
lib/tests/scanf_kunit.c
628
test_number_prefix(signed char, "-1 1", "%1hhd %hhd", 0, 0, 0, check_char);
lib/tests/scanf_kunit.c
630
test_number_prefix(long long, "-1 1", "%1lli %lli", 0, 0, 0, check_ll);
lib/tests/scanf_kunit.c
631
test_number_prefix(long, "-1 1", "%1li %li", 0, 0, 0, check_long);
lib/tests/scanf_kunit.c
632
test_number_prefix(int, "-1 1", "%1i %i", 0, 0, 0, check_int);
lib/tests/scanf_kunit.c
633
test_number_prefix(short, "-1 1", "%1hi %hi", 0, 0, 0, check_short);
lib/tests/scanf_kunit.c
634
test_number_prefix(signed char, "-1 1", "%1hhi %hhi", 0, 0, 0, check_char);
lib/tests/scanf_kunit.c
641
test_number_prefix(unsigned long long, "0xA7", "%1llx%llx", 0, 0, 1, check_ull);
lib/tests/scanf_kunit.c
642
test_number_prefix(unsigned long, "0xA7", "%1lx%lx", 0, 0, 1, check_ulong);
lib/tests/scanf_kunit.c
643
test_number_prefix(unsigned int, "0xA7", "%1x%x", 0, 0, 1, check_uint);
lib/tests/scanf_kunit.c
644
test_number_prefix(unsigned short, "0xA7", "%1hx%hx", 0, 0, 1, check_ushort);
lib/tests/scanf_kunit.c
645
test_number_prefix(unsigned char, "0xA7", "%1hhx%hhx", 0, 0, 1, check_uchar);
lib/tests/scanf_kunit.c
646
test_number_prefix(long long, "0xA7", "%1lli%llx", 0, 0, 1, check_ll);
lib/tests/scanf_kunit.c
647
test_number_prefix(long, "0xA7", "%1li%lx", 0, 0, 1, check_long);
lib/tests/scanf_kunit.c
648
test_number_prefix(int, "0xA7", "%1i%x", 0, 0, 1, check_int);
lib/tests/scanf_kunit.c
649
test_number_prefix(short, "0xA7", "%1hi%hx", 0, 0, 1, check_short);
lib/tests/scanf_kunit.c
650
test_number_prefix(char, "0xA7", "%1hhi%hhx", 0, 0, 1, check_char);
lib/tests/scanf_kunit.c
657
test_number_prefix(unsigned long long, "0xA7", "%2llx%llx", 0, 0xa7, 2, check_ull);
lib/tests/scanf_kunit.c
658
test_number_prefix(unsigned long, "0xA7", "%2lx%lx", 0, 0xa7, 2, check_ulong);
lib/tests/scanf_kunit.c
659
test_number_prefix(unsigned int, "0xA7", "%2x%x", 0, 0xa7, 2, check_uint);
lib/tests/scanf_kunit.c
660
test_number_prefix(unsigned short, "0xA7", "%2hx%hx", 0, 0xa7, 2, check_ushort);
lib/tests/scanf_kunit.c
661
test_number_prefix(unsigned char, "0xA7", "%2hhx%hhx", 0, 0xa7, 2, check_uchar);
lib/tests/scanf_kunit.c
669
test_number_prefix(long long, "0x67", "%2lli%lli", 0, 67, 2, check_ll);
lib/tests/scanf_kunit.c
670
test_number_prefix(long, "0x67", "%2li%li", 0, 67, 2, check_long);
lib/tests/scanf_kunit.c
671
test_number_prefix(int, "0x67", "%2i%i", 0, 67, 2, check_int);
lib/tests/scanf_kunit.c
672
test_number_prefix(short, "0x67", "%2hi%hi", 0, 67, 2, check_short);
lib/tests/scanf_kunit.c
673
test_number_prefix(char, "0x67", "%2hhi%hhi", 0, 67, 2, check_char);
lib/tests/scanf_kunit.c
675
test_number_prefix(long long, "0xA7", "%2lli%lli", 0, 0, 1, check_ll);
lib/tests/scanf_kunit.c
676
test_number_prefix(long, "0xA7", "%2li%li", 0, 0, 1, check_long);
lib/tests/scanf_kunit.c
677
test_number_prefix(int, "0xA7", "%2i%i", 0, 0, 1, check_int);
lib/tests/scanf_kunit.c
678
test_number_prefix(short, "0xA7", "%2hi%hi", 0, 0, 1, check_short);
lib/tests/scanf_kunit.c
679
test_number_prefix(char, "0xA7", "%2hhi%hhi", 0, 0, 1, check_char);