Searched refs:c_len (Results 1 - 6 of 6) sorted by relevance
/third_party/toybox/toys/pending/ |
H A D | wget.c | 276 size_t len, c_len = 0; in wget_main() local 335 // parsing of the first c_len length by allowing the do while loop to fall in wget_main() 336 // through on the first iteration and parse the first c_len size. in wget_main() 345 // c_len is the size of the remaining bytes in the current chunk in wget_main() 348 if (c_len > 0) { // We have an incomplete c_len to write in wget_main() 349 if (len <= c_len) { // Buffer is less than the c_len so full write in wget_main() 351 c_len = c_len in wget_main() [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | avstring.c | 309 size_t p_len, c_len; in av_append_path_component() local 318 c_len = strlen(component); in av_append_path_component() 319 if (p_len > SIZE_MAX - c_len || p_len + c_len > SIZE_MAX - 2) in av_append_path_component() 321 fullpath = av_malloc(p_len + c_len + 2); in av_append_path_component() 325 if (c_len) { in av_append_path_component() 332 av_strlcpy(&fullpath[p_len], component, c_len + 1); in av_append_path_component() 333 fullpath[p_len + c_len] = 0; in av_append_path_component()
|
/third_party/exfatprogs/lib/ |
H A D | libexfat.c | 279 size_t wcs_len, out_len, c_len, i; in exfat_utf16_dec() local 313 for (i = 0, out_len = 0, c_len = 0; i <= wcs_len; i++) { in exfat_utf16_dec() 314 c_len = wcrtomb(c_str, wcs[i], &ps); in exfat_utf16_dec() 319 if (c_len == (size_t)-1 && errno == EILSEQ) in exfat_utf16_dec() 320 c_len = wcrtomb(c_str, 0xFFFD, &ps); in exfat_utf16_dec() 322 if (c_len == (size_t)-1 && errno == EILSEQ) in exfat_utf16_dec() 323 c_len = wcrtomb(c_str, L'?', &ps); in exfat_utf16_dec() 325 if (c_len == (size_t)-1) { in exfat_utf16_dec() 330 if (out_len+c_len > out_size) { in exfat_utf16_dec() 335 memcpy(out_str+out_len, c_str, c_len); in exfat_utf16_dec() [all...] |
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
H A D | fcntl14.c | 81 long c_len; member 617 flock.l_len = thiscase->c_len; in dochild() 659 if (flock.l_len != thiscase->c_len) { in dochild() 664 (int64_t) thiscase->c_len); in dochild() 703 flock.l_len = thiscase->c_len; in dochild() 835 thiscase->c_len, thiscase->c_flag, in run_test() 954 &thiscase->c_len, &thiscase->c_flag, &thiscase->a_type, in main() 1086 thiscase->c_len, thiscase->c_flag, in main()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_draw.cpp | 2360 int c_len = ImTextCharFromUtf8(&c, text, text_end); in AddText() local 2361 text += c_len; in AddText() 2362 if (c_len == 0) in AddText()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_draw.cpp | 3065 int c_len = ImTextCharFromUtf8(&c, text, text_end); in AddText() local 3066 text += c_len; in AddText() 3067 if (c_len == 0) in AddText()
|
Completed in 19 milliseconds