Home
last modified time | relevance | path

Searched refs:strtoull (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/tests/lib/c_lib/common/src/
Dmain.c921 ret = strtoull(border5, NULL, 16); in test_strtoll()
923 ret = strtoull(border6, NULL, 10); in test_strtoll()
925 ret = strtoull(border7, NULL, 10); in test_strtoll()
954 ret = strtoull(buf3, NULL, 8); in test_strtoull()
956 ret = strtoull(buf1, NULL, 10); in test_strtoull()
958 ret = strtoull(buf2, NULL, 10); in test_strtoull()
960 ret = strtoull(buf4, NULL, 16); in test_strtoull()
962 ret = strtoull(buf4, NULL, 0); in test_strtoull()
964 ret = strtoull(buf5, NULL, 0); in test_strtoull()
966 ret = strtoull(buf6, NULL, 0); in test_strtoull()
[all …]
/Zephyr-latest/samples/posix/eventfd/src/
Dmain.c33 u = strtoull(g_argv[j], NULL, 0); in writer()
/Zephyr-latest/lib/libc/minimal/source/stdlib/
Dstrtoull.c43 unsigned long long strtoull(const char *nptr, char **endptr, register int base) in strtoull() function
/Zephyr-latest/lib/libc/minimal/include/
Dstdlib.h23 unsigned long long strtoull(const char *nptr, char **endptr, int base);
/Zephyr-latest/lib/libc/minimal/
DCMakeLists.txt21 source/stdlib/strtoull.c
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dpsa_its_emul.c64 uid = strtoull(name, NULL, 10); in itsemul_set()
/Zephyr-latest/scripts/native_simulator/native/src/
Dnsi_cmdline_common.c154 *(uint64_t *)dest = strtoull(str, &endptr, 0); in nsi_cmd_read_option_value()
/Zephyr-latest/boards/native/native_posix/
Dcmdline_common.c152 *(uint64_t *)dest = strtoull(str, &endptr, 0); in cmd_read_option_value()
/Zephyr-latest/subsys/shell/
Dshell_utils.c602 val = strtoull(str, &endptr, base); in shell_strtoull()
/Zephyr-latest/lib/utils/
Djson.c482 *num = strtoull(token->start, &endptr, 10); in decode_uint64()
/Zephyr-latest/doc/contribute/coding_guidelines/
Dindex.rst1389 strtoull(),ISO/IEC 9899:2011
/Zephyr-latest/doc/releases/
Drelease-notes-3.1.rst1951 * :github:`36645` - minimal libc: add strtoll and strtoull functions
Drelease-notes-3.2.rst2515 * :github:`44005` - add strtoll and strtoull to libc minimal