Searched refs:utf8_len (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/vim-55/src/
H A Dos_mac_conv.c337 size_t utf8_len; local
342 utf8_len = 0;
343 utf8_str = mac_utf16_to_utf8(from, fromLen, &utf8_len);
363 result = string_convert(&conv, utf8_str, (int *)&utf8_len);
370 *actualLen = utf8_len;
391 size_t utf8_len; local
409 utf8_len = fromLen;
410 utf8_str = string_convert(&conv, from, (int *)&utf8_len);
416 utf8_len = fromLen;
424 result = mac_utf8_to_utf16(utf8_str, utf8_len, actualLe
503 ByteCount utf8_len; local
[all...]
H A Dgui_photon.c2261 static int utf8_len = 0; local
2291 if( utf8_len < len )
2294 utf8_len = len;
2303 utf8_len,
/macosx-10.10.1/smb-759.0/lib/smb/
H A Drq.c74 char *utf8str, size_t *utf8_len,
85 rq.ioc_dest_len = *utf8_len;
88 *utf8_len = (size_t)rq.ioc_dest_len;
91 * this later. Since utf8_len has to be less than the utf8str buffer
94 utf8str[*utf8_len] = 0;
105 const char *utf8str, size_t utf8_len,
115 rq.ioc_src_len = (uint32_t)utf8_len;
72 smb_ntwrkpath_to_localpath(struct smb_ctx *ctx, const char *ntwrkstr, size_t ntwrk_len, char *utf8str, size_t *utf8_len, uint32_t flags) argument
104 smb_localpath_to_ntwrkpath(struct smb_ctx *ctx, const char *utf8str, size_t utf8_len, char *ntwrkstr, size_t *ntwrk_len, uint32_t flags) argument
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A Dunicode.c464 utf8_len (SQLCHAR * p, ssize_t size) function
791 len = utf8_len (str, SQL_NTS);
844 len = utf8_len (inStr, size);
865 length = utf8_len (inStr, SQL_NTS);
/macosx-10.10.1/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_lookup.c412 size_t utf8_len; local
585 error = utf8_encodestr(found_name, found_name_len * 2, (u_int8_t *)found_cnp.cn_nameptr, &utf8_len, found_cnp.cn_pnlen, 0, UTF_DECOMPOSED|UTF_SFM_CONVERSIONS);
588 found_cnp.cn_namelen = (int)utf8_len;
/macosx-10.10.1/smb-759.0/lib/
H A Dlibtest.c654 size_t utf8_len = 1024; local
669 if (smb_ntwrkpath_to_localpath(ctx, ntwrkstr, ntwrk_len, utf8str, &utf8_len, flags)) {
678 printf("utf8str = %s len = %ld\n", utf8str, utf8_len);
/macosx-10.10.1/emacs-93/emacs/src/
H A Dw32menu.c2331 int utf8_len = strlen (out_string);
2334 utf16_string = local_alloc ((utf8_len + 1) * sizeof (WCHAR));
2336 utf16_string = alloca ((utf8_len + 1) * sizeof (WCHAR));
2338 utf8to16 (out_string, utf8_len, utf16_string);
2319 int utf8_len = strlen (out_string); local
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/lib/JSON/
H A DPP.pm617 my $utf8_len; # utf8 byte length
736 ($is_valid_utf8, $utf8_len) = ('', 0);
815 $at += $utf8_len - 1;
1155 $utf8_len = $_[0] =~ /[\x00-\x7F]/ ? 1
1162 return unless $utf8_len;
1164 my $is_valid_utf8 = substr($text, $at - 1, $utf8_len);
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_vnops.c9884 signed utf8_len; local
9995 utf8_len = ntfs_to_utf8(vol, name, name_len <<
9997 if (utf8_len < 0) {
10001 -utf8_len);
10022 ntfs_debug("Skipping protected name %.*s.", utf8_len,
10030 utf8_len++;
10033 size += utf8_len;
10034 else if (uio_resid(uio) < utf8_len) {
10038 err = uiomove((caddr_t)utf8_name, utf8_len, uio);
10045 ntfs_debug("Exporting name %.*s.", utf8_len, utf8_nam
[all...]

Completed in 161 milliseconds