/AliOS-Things-master/components/cjson/src/ |
A D | cJPath.c | 165 int wlen = 0; in get_next_word() local 185 wlen++; in get_next_word() 187 *wordlen = wlen + 1; in get_next_word() 190 *wordlen = wlen; in get_next_word() 200 wlen = 0; in get_next_word() 202 wlen++; in get_next_word() 228 if (wlen == 1) { in get_next_word() 229 *wordlen = wlen; in get_next_word() 235 wlen--; in get_next_word() 237 wlen--; in get_next_word() [all …]
|
/AliOS-Things-master/components/cli/src/iobox/ |
A D | cat.c | 49 int wlen; in cat_main() local 56 wlen = write(STDOUT_FILENO, buf, ret); in cat_main() 57 if (wlen != ret) { in cat_main()
|
A D | mv.c | 26 int rlen = 0, wlen = 0, ret = -1, isdir = false; in mv_main() local 88 wlen = write(fd_to, buf, rlen); in mv_main() 89 if (wlen != rlen) { in mv_main()
|
A D | cp.c | 39 int fd_to, fd_from, ret = -1, rlen, wlen; in cp_file_to_file() local 60 wlen = write(fd_to, buf, rlen); in cp_file_to_file() 61 if (wlen != rlen) { in cp_file_to_file() 62 aos_cli_printf("write %s failed - %d\n", to, wlen); in cp_file_to_file()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | upap.c | 604 int mlen, ulen, wlen; in upap_printpkt() local 630 wlen = p[ulen + 1]; in upap_printpkt() 631 if (len < ulen + wlen + 2) in upap_printpkt() 635 p += ulen + wlen + 2; in upap_printpkt() 636 len -= ulen + wlen + 2; in upap_printpkt() 644 ppp_print_string(pwd, wlen, printer, arg); in upap_printpkt()
|
/AliOS-Things-master/components/SDL2/src/hidapi/linux/ |
A D | hid.c | 134 size_t wlen = mbstowcs(NULL, utf8, 0); in utf8_to_wchar_t() local 135 if ((size_t) -1 == wlen) { in utf8_to_wchar_t() 138 ret = (wchar_t *)calloc(wlen+1, sizeof(wchar_t)); in utf8_to_wchar_t() 139 mbstowcs(ret, utf8, wlen+1); in utf8_to_wchar_t() 140 ret[wlen] = 0x0000; in utf8_to_wchar_t()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/tftp/ |
A D | tftp_client.c | 106 int wlen = 0; in recv() local 134 wlen = pstate->ctx->write(pstate->handle, p); in recv() 135 if (wlen != blklen) { in recv()
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | moduos.c | 290 int rlen = 0, wlen = 0, ret = -1, isdir = false; in py_mv() local 345 wlen = write(fd_to, buf, rlen); in py_mv() 346 if (wlen != rlen) { in py_mv()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | moduos.c | 286 int rlen = 0, wlen = 0, ret = -1, isdir = false; in py_mv() local 340 wlen = write(fd_to, buf, rlen); in py_mv() 341 if (wlen != rlen) { in py_mv()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | moduos.c | 286 int rlen = 0, wlen = 0, ret = -1, isdir = false; in py_mv() local 340 wlen = write(fd_to, buf, rlen); in py_mv() 341 if (wlen != rlen) { in py_mv()
|
/AliOS-Things-master/components/csi/CMSIS/Core/Include/ |
A D | cmsis_gcc.h | 138 uint32_t wlen; in __cmsis_start() member 143 uint32_t wlen; in __cmsis_start() member 152 for(uint32_t i=0u; i<pTable->wlen; ++i) { in __cmsis_start() 158 for(uint32_t i=0u; i<pTable->wlen; ++i) { in __cmsis_start()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/Core/Include/ |
A D | cmsis_gcc.h | 138 uint32_t wlen; in __cmsis_start() member 143 uint32_t wlen; in __cmsis_start() member 152 for(uint32_t i=0u; i<pTable->wlen; ++i) { in __cmsis_start() 158 for(uint32_t i=0u; i<pTable->wlen; ++i) { in __cmsis_start()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/Core/Include/ |
A D | cmsis_gcc.h | 138 uint32_t wlen; in __cmsis_start() member 143 uint32_t wlen; in __cmsis_start() member 152 for(uint32_t i=0u; i<pTable->wlen; ++i) { in __cmsis_start() 158 for(uint32_t i=0u; i<pTable->wlen; ++i) { in __cmsis_start()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngwutil.c | 1813 size_t wlen, hlen, total_len; in png_write_sCAL_s() local 1817 wlen = strlen(width); in png_write_sCAL_s() 1819 total_len = wlen + hlen + 2; in png_write_sCAL_s() 1828 memcpy(buf + 1, width, wlen + 1); /* Append the '\0' here */ in png_write_sCAL_s() 1829 memcpy(buf + wlen + 2, height, hlen); /* Do NOT append the '\0' here */ in png_write_sCAL_s()
|