Lines Matching refs:qemu_strtoui
750 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_correct()
764 err = qemu_strtoui(NULL, &endptr, 0, &res); in test_qemu_strtoui_null()
779 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_empty()
794 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_whitespace()
809 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_invalid()
824 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_trailing()
839 err = qemu_strtoui(str, &endptr, 8, &res); in test_qemu_strtoui_octal()
847 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_octal()
862 err = qemu_strtoui(str, &endptr, 10, &res); in test_qemu_strtoui_decimal()
871 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_decimal()
886 err = qemu_strtoui(str, &endptr, 16, &res); in test_qemu_strtoui_hex()
895 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_hex()
904 err = qemu_strtoui(str, &endptr, 16, &res); in test_qemu_strtoui_hex()
920 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_wrap()
935 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_max()
953 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
961 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
969 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
977 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
985 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
993 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
1001 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_overflow()
1017 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_underflow()
1025 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_underflow()
1033 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_underflow()
1041 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_underflow()
1049 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_underflow()
1063 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_negative()
1078 err = qemu_strtoui(str, &endptr, 0, &res); in test_qemu_strtoui_negzero()
1091 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_correct()
1102 err = qemu_strtoui(NULL, NULL, 0, &res); in test_qemu_strtoui_full_null()
1114 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_empty()
1126 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_negative()
1137 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_negzero()
1148 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_trailing()
1160 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_max()
1174 err = qemu_strtoui(str, NULL, 0, &res); in test_qemu_strtoui_full_erange_junk()