Home
last modified time | relevance | path

Searched refs:qemu_strtoi64 (Results 1 – 8 of 8) sorted by relevance

/openbmc/qemu/tests/unit/
H A Dtest-cutils.c2018 err = qemu_strtoi64(str, &endptr, 0, &res); in test_qemu_strtoi64_correct()
2047 err = qemu_strtoi64(str, &endptr, 0, &res); in test_qemu_strtoi64_empty()
2062 err = qemu_strtoi64(str, &endptr, 0, &res); in test_qemu_strtoi64_whitespace()
2311 err = qemu_strtoi64(str, NULL, 0, &res); in test_qemu_strtoi64_full_correct()
2322 err = qemu_strtoi64(NULL, NULL, 0, &res); in test_qemu_strtoi64_full_null()
2334 err = qemu_strtoi64(str, NULL, 0, &res); in test_qemu_strtoi64_full_empty()
2346 err = qemu_strtoi64(str, NULL, 0, &res); in test_qemu_strtoi64_full_negative()
2358 err = qemu_strtoi64(str, NULL, 0, &res); in test_qemu_strtoi64_full_negzero()
2370 err = qemu_strtoi64(str, NULL, 0, &res); in test_qemu_strtoi64_full_trailing()
2383 err = qemu_strtoi64(str, NULL, 0, &res); in test_qemu_strtoi64_full_max()
[all …]
/openbmc/qemu/qapi/
H A Dstring-input-visitor.c140 if (qemu_strtoi64(siv->unparsed_string, &endptr, 0, &start)) { in try_parse_int64_list_entry()
154 if (qemu_strtoi64(endptr + 1, &endptr, 0, &end)) { in try_parse_int64_list_entry()
191 if (qemu_strtoi64(siv->string, NULL, 0, &val)) { in parse_type_int64()
H A Dqobject-input-visitor.c425 if (qemu_strtoi64(str, NULL, 0, obj) < 0) { in qobject_input_type_int64_keyval()
/openbmc/qemu/include/qemu/
H A Dcutils.h159 int qemu_strtoi64(const char *nptr, const char **endptr, int base,
/openbmc/qemu/system/
H A Dqtest.c716 int ret = qemu_strtoi64(words[1], NULL, 0, &ns); in qtest_process_command()
747 ret = qemu_strtoi64(words[1], NULL, 0, &ns); in qtest_process_command()
/openbmc/qemu/qobject/
H A Djson-parser.c508 ret = qemu_strtoi64(token->str, NULL, 10, &value); in parse_literal()
H A Dblock-qdict.c345 int is_index = !qemu_strtoi64(ent->key, NULL, 10, &val); in qdict_is_list()
/openbmc/qemu/util/
H A Dcutils.c647 int qemu_strtoi64(const char *nptr, const char **endptr, int base, in qemu_strtoi64() function