Lines Matching refs:qemu_strtou64

2411     err = qemu_strtou64(str, &endptr, 0, &res);  in test_qemu_strtou64_correct()
2425 err = qemu_strtou64(NULL, &endptr, 0, &res); in test_qemu_strtou64_null()
2440 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_empty()
2455 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_whitespace()
2470 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_invalid()
2485 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_trailing()
2500 err = qemu_strtou64(str, &endptr, 8, &res); in test_qemu_strtou64_octal()
2508 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_octal()
2523 err = qemu_strtou64(str, &endptr, 10, &res); in test_qemu_strtou64_decimal()
2532 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_decimal()
2547 err = qemu_strtou64(str, &endptr, 16, &res); in test_qemu_strtou64_hex()
2556 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_hex()
2565 err = qemu_strtou64(str, &endptr, 16, &res); in test_qemu_strtou64_hex()
2580 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_wrap()
2595 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_max()
2613 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_overflow()
2621 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_overflow()
2629 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_overflow()
2645 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_underflow()
2653 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_underflow()
2661 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_underflow()
2675 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_negative()
2690 err = qemu_strtou64(str, &endptr, 0, &res); in test_qemu_strtou64_negzero()
2703 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_correct()
2714 err = qemu_strtou64(NULL, NULL, 0, &res); in test_qemu_strtou64_full_null()
2726 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_empty()
2738 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_negative()
2750 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_negzero()
2762 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_trailing()
2774 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_max()
2788 err = qemu_strtou64(str, NULL, 0, &res); in test_qemu_strtou64_full_erange_junk()