Home
last modified time | relevance | path

Searched refs:utf8len (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/sys/contrib/openzfs/module/unicode/
H A Duconv.c482 if (u8l >= *utf8len) in uconv_u16tou8()
486 if ((u8l + 1) >= *utf8len) in uconv_u16tou8()
512 *utf8len = u8l; in uconv_u16tou8()
636 if (u8l >= *utf8len) in uconv_u32tou8()
663 *utf8len = u8l; in uconv_u32tou8()
700 for (; u8l < *utf8len; ) { in uconv_u8tou16()
729 if (u8l >= *utf8len) in uconv_u8tou16()
774 *utf8len = u8l; in uconv_u8tou16()
811 for (; u8l < *utf8len; ) { in uconv_u8tou32()
825 if (u8l >= *utf8len) in uconv_u8tou32()
[all …]
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dutf8proc.c290 apr_size_t utf8len; in encode_ucs4() local
295 utf8len = utf8proc_encode_char(ucs4chr, ((apr_byte_t*)buffer->data + *length)); in encode_ucs4()
296 if (!utf8len) in encode_ucs4()
300 *length += utf8len; in encode_ucs4()