Lines Matching refs:qemu_strtoul
1605 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_correct()
1619 err = qemu_strtoul(NULL, &endptr, 0, &res); in test_qemu_strtoul_null()
1634 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_empty()
1649 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_whitespace()
1664 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_invalid()
1679 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_trailing()
1694 err = qemu_strtoul(str, &endptr, 8, &res); in test_qemu_strtoul_octal()
1702 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_octal()
1717 err = qemu_strtoul(str, &endptr, 10, &res); in test_qemu_strtoul_decimal()
1726 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_decimal()
1741 err = qemu_strtoul(str, &endptr, 16, &res); in test_qemu_strtoul_hex()
1750 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_hex()
1759 err = qemu_strtoul(str, &endptr, 16, &res); in test_qemu_strtoul_hex()
1776 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_wrap()
1791 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_max()
1810 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_overflow()
1819 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_overflow()
1828 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_overflow()
1836 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_overflow()
1853 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_underflow()
1862 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_underflow()
1871 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_underflow()
1879 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_underflow()
1893 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_negative()
1908 err = qemu_strtoul(str, &endptr, 0, &res); in test_qemu_strtoul_negzero()
1921 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_correct()
1932 err = qemu_strtoul(NULL, NULL, 0, &res); in test_qemu_strtoul_full_null()
1944 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_empty()
1956 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_negative()
1967 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_negzero()
1978 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_trailing()
1990 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_max()
2004 err = qemu_strtoul(str, NULL, 0, &res); in test_qemu_strtoul_full_erange_junk()