Searched refs:fromlen (Results 1 – 5 of 5) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | bufwrite.c | 256 size_t fromlen; in buf_write_bytes() local 275 fromlen = len; in buf_write_bytes() 283 while (fromlen > 0) in buf_write_bytes() 291 fromlen -= n; in buf_write_bytes() 297 if (fromlen > CONV_RESTLEN) in buf_write_bytes() 349 for (from = ip->bw_conv_buf; fromlen > 1; fromlen -= 2) in buf_write_bytes() 387 size_t fromlen; in buf_write_bytes() local 402 fromlen = len; in buf_write_bytes() 420 size_t fromlen; in buf_write_bytes() local 442 fromlen = len; in buf_write_bytes() [all …]
|
| H A D | os_mac_conv.c | 230 size_t fromlen, in enc2macroman() argument 242 cfstr = CFStringCreateWithBytes(NULL, from, fromlen, in enc2macroman() 245 while (cfstr == NULL && *restlenp < 3 && fromlen > 1) in enc2macroman() 247 rest[*restlenp++] = from[--fromlen]; in enc2macroman() 248 cfstr = CFStringCreateWithBytes(NULL, from, fromlen, in enc2macroman()
|
| H A D | mbyte.c | 4760 size_t fromlen; in iconv_string() local 4770 fromlen = slen; in iconv_string() 4777 len = len + fromlen * 2 + 40; in iconv_string() 4791 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen) in iconv_string() 4806 *unconvlenp = (int)fromlen; in iconv_string() 4823 l = utfc_ptr2len_len((char_u *)from, (int)fromlen); in iconv_string() 4827 if (l > (int)fromlen) in iconv_string() 4828 l = (int)fromlen; in iconv_string() 4831 fromlen -= l; in iconv_string()
|
| H A D | strings.c | 521 size_t fromlen = STRLEN(from); in vim_strcat() local 523 if (tolen + fromlen + 1 > tosize) in vim_strcat() 529 mch_memmove(to + tolen, from, fromlen + 1); in vim_strcat() 1475 int fromlen; in f_tr() local 1521 for (p = fromstr; *p != NUL; p += fromlen) in f_tr() 1523 fromlen = (*mb_ptr2len)(p); in f_tr() 1524 if (fromlen == inlen && STRNCMP(in_str, p, inlen) == 0) in f_tr()
|
| /vim-8.2.3635/src/proto/ |
| H A D | os_mac_conv.pro | 4 int enc2macroman(char_u *from, size_t fromlen, char_u *to, int *tolenp, int maxtolen, char_u *rest,…
|