Searched refs:strtoll (Results 1 – 11 of 11) sorted by relevance
/Zephyr-latest/tests/lib/c_lib/common/src/ |
D | main.c | 874 ret = strtoll(buf3, NULL, 8); in test_strtoll() 876 ret = strtoll(buf1, NULL, 10); in test_strtoll() 878 ret = strtoll(buf2, NULL, 10); in test_strtoll() 880 ret = strtoll(buf4, NULL, 16); in test_strtoll() 882 ret = strtoll(buf4, NULL, 0); in test_strtoll() 884 ret = strtoll(buf5, NULL, 0); in test_strtoll() 886 ret = strtoll(buf6, NULL, 0); in test_strtoll() 888 ret = strtoll(buf7, NULL, 0); in test_strtoll() 890 ret = strtoll(buf8, NULL, 10); in test_strtoll() 892 ret = strtoll(buf9, NULL, 10); in test_strtoll() [all …]
|
/Zephyr-latest/subsys/profiling/perf/ |
D | perf.c | 85 k_timeout_t duration = K_MSEC(strtoll(argv[1], NULL, 10)); in cmd_perf_record() 86 k_timeout_t period = K_NSEC(1000000000 / strtoll(argv[2], NULL, 10)); in cmd_perf_record()
|
/Zephyr-latest/lib/libc/minimal/source/stdlib/ |
D | strtoll.c | 43 long long strtoll(const char *nptr, char **endptr, register int base) in strtoll() function
|
/Zephyr-latest/lib/libc/minimal/include/ |
D | stdlib.h | 24 long long strtoll(const char *nptr, char **endptr, int base);
|
/Zephyr-latest/lib/libc/minimal/ |
D | CMakeLists.txt | 20 source/stdlib/strtoll.c
|
/Zephyr-latest/scripts/native_simulator/native/src/ |
D | nsi_cmdline_common.c | 160 *(int64_t *)dest = strtoll(str, &endptr, 0); in nsi_cmd_read_option_value()
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_shell.c | 354 ret = lwm2m_set_s64(&path, strtoll(value, &e, 10)); in cmd_write() 364 ret = lwm2m_set_time(&path, strtoll(value, &e, 10)); in cmd_write()
|
/Zephyr-latest/lib/utils/ |
D | json.c | 458 *num = strtoll(token->start, &endptr, 10); in decode_int64()
|
/Zephyr-latest/doc/contribute/coding_guidelines/ |
D | index.rst | 1319 strtoll(),ISO/IEC 9899:2011
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.1.rst | 1951 * :github:`36645` - minimal libc: add strtoll and strtoull functions
|
D | release-notes-3.2.rst | 2515 * :github:`44005` - add strtoll and strtoull to libc minimal
|