/AliOS-Things-master/components/mbedtls/programs/util/ |
A D | strerror.c | 65 val = strtol( argv[1], &end, 10 ); in main() 68 val = strtol( argv[1], &end, 16 ); in main()
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/platform/ |
A D | platform_stdlib_rtl8721d.h | 53 #undef strtol 82 #define strtol(str, endp, base) _strtol(str, endp, base) macro
|
/AliOS-Things-master/components/ble_host/bt_shell/bt_host/ |
A D | bt.c | 570 id = strtol(argv[1], NULL, 10); in cmd_id_reset() 605 id = strtol(argv[1], NULL, 10); in cmd_id_delete() 644 id = strtol(argv[1], NULL, 10); in cmd_id_select() 835 params.interval = strtol(argv[3], NULL, 10); in cmd_scan() 839 params.window = strtol(argv[4], NULL, 10); in cmd_scan() 1006 param.interval_min = strtol(argv[3], NULL, 16); in cmd_connect_le() 1007 param.interval_max = strtol(argv[4], NULL, 16); in cmd_connect_le() 1011 param.latency = strtol(argv[5], NULL, 16); in cmd_connect_le() 1012 param.timeout = strtol(argv[6], NULL, 16); in cmd_connect_le() 1037 conn_handle = strtol(argv[1], NULL, 10); in cmd_disconnect()
|
/AliOS-Things-master/components/py_engine/engine/mpy-cross/ |
A D | main.c | 155 heap_size = strtol(argv[a + 1] + sizeof("heapsize=") - 1, &end, 0); in pre_process_options() 262 strtol(argv[a] + sizeof("-msmall-int-bits=") - 1, &end, 0); in main_()
|
/AliOS-Things-master/components/SDL2/src/power/linux/ |
A D | SDL_syspower.c | 162 const int cvt = (int) strtol(val, &endptr, 10); in check_proc_acpi_battery() 173 const int cvt = (int) strtol(val, &endptr, 10); in check_proc_acpi_battery() 318 *val = (int) strtol(str, &endptr, 0); in int_string()
|
/AliOS-Things-master/components/linkkit/wifi_provision/dev_bind/ |
A D | awss_report.c | 188 switchap_bssid[i++] = (uint8_t)strtol(bssid_str, &bssid_str, 16); in awss_online_switchap() 208 timeout = (int)strtol(elem, &elem, 16); in awss_online_switchap()
|
/AliOS-Things-master/components/linkkit/wifi_provision/dev_bind/os/ |
A D | os_misc.c | 102 mac_addr[i++] = (uint8_t)strtol(ptr, &ptr, 16); in os_wifi_str2mac()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_svg.c | 62 #define strtol SDL_strtol macro
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/ |
A D | pngdec.c | 85 *dst++ = (uint8_t)strtol(val, &end, 16); in HexStringToBytes() 115 expected_length = (int)strtol(src, &end, 10); in ProcessRawProfile()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/utils/rom_utils/ |
A D | export_fn_rom.h | 74 __STRTOL strtol; member
|
/AliOS-Things-master/components/sensor/include/ |
A D | gps_parse.h | 61 ret = strtol(&buff[0], &str_tmp, radix); in gps_atoi()
|
/AliOS-Things-master/components/ble_host/bt_shell/bt_host/test/ |
A D | bt.c | 751 id = strtol(argv[1], NULL, 10); in cmd_id_reset() 786 id = strtol(argv[1], NULL, 10); in cmd_id_delete() 825 id = strtol(argv[1], NULL, 10); in cmd_id_select() 1208 params.interval = strtol(argv[3], NULL, 10); in cmd_scan() 1212 params.window = strtol(argv[4], NULL, 10); in cmd_scan() 1839 param.interval_min = strtol(argv[3], NULL, 16); in cmd_connect_le() 1840 param.interval_max = strtol(argv[4], NULL, 16); in cmd_connect_le() 1844 param.latency = strtol(argv[5], NULL, 16); in cmd_connect_le() 1845 param.timeout = strtol(argv[6], NULL, 16); in cmd_connect_le() 1870 conn_handle = strtol(argv[1], NULL, 10); in cmd_disconnect()
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/src/ |
A D | settings.c | 286 src = strtol(name, NULL, 16); in rpl_set() 334 net_idx = strtol(name, NULL, 16); in net_key_set() 401 app_idx = strtol(name, NULL, 16); in app_key_set() 510 app_idx = strtol(name, NULL, 16); in papp_key_set() 730 mod_key = strtol(name, NULL, 16); in mod_set() 787 node_id = strtol(name, NULL, 16); in prov_node_set()
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/ |
A D | fitblk.c | 139 ret = strtol(argv[1], argv + 1, 10); in main()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | multilink.c | 418 i = strtol(p, &endp, 10); 560 i = strtol(str, &endp, 10);
|
A D | ccp.c | 285 abits = rbits = strtol(str, &endp, 0); 288 abits = strtol(str, &endp, 0); 324 abits = rbits = strtol(str, &endp, 0); 327 abits = strtol(str, &endp, 0);
|
A D | chap_ms.c | 450 err = strtol(p+2, NULL, 10); /* Remember the error code. */ in chapms_handle_failure()
|
/AliOS-Things-master/components/SDL2/src/hidapi/testgui/ |
A D | test.cpp | 334 long int val = strtol(token, &endptr, 0); in getDataFromTextField() 357 len = strtol(str.text(), &endptr, 0); in getLengthFromTextField()
|
/AliOS-Things-master/components/SDL2/src/hidapi/linux/ |
A D | hid.c | 614 cur_dev->release_number = (str)? strtol(str, NULL, 16): 0x0; in hid_enumerate() 623 cur_dev->interface_number = (str)? strtol(str, NULL, 16): -1; in hid_enumerate()
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | keys.c | 335 id = strtol(next, NULL, 10); in keys_set()
|
/AliOS-Things-master/components/SDL2/src/hidapi/windows/ |
A D | hid.c | 56 #define strtol SDL_strtol macro 566 cur_dev->interface_number = strtol(hex_str, &endptr, 16); in hid_enumerate()
|
/AliOS-Things-master/components/freetype/src/tools/ftrandom/ |
A D | ftrandom.c | 590 error_count = strtol( argv[++i], &end, 10 ); in main()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | SConstruct | 154 conf.CheckFunc('strtol')
|
A D | CMakeLists.txt | 416 check_function_exists(strtol HAVE_STRTOL) 417 check_function_exists(strtol HAVE_STRTOUL)
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_config.h.cmake.in | 122 /* Define to 1 if you have the `strtol' function. */
|