Lines Matching refs:utf8size
902 size_t utf8size = 256; /* large enough */
919 utf8 = (char *)malloc(utf8size);
926 r = idn_ucs4_ucs4toutf8(from, utf8, utf8size);
930 utf8size *= 2;
931 new_utf8 = (char *)realloc(utf8, utf8size);
1019 size_t utf8size = 256; /* large enough */
1034 utf8 = (char *)malloc(utf8size);
1052 outleft = utf8size - 1; /* reserve space for terminating NUL */
1070 utf8size *= 2;
1071 new_utf8 = (char *)realloc(utf8, utf8size);