Home
last modified time | relevance | path

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

/freebsd/contrib/libpcap/
H A Dfmtutils.c115 return (utf_8); in utf_16le_to_utf_8_truncated()
198 *utf_8++ = (char)uc; in utf_16le_to_utf_8_truncated()
209 *utf_8++ = ((uc >> 6) & 0x3F) | 0xC0; in utf_16le_to_utf_8_truncated()
210 *utf_8++ = ((uc >> 0) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
221 *utf_8++ = ((uc >> 12) & 0x0F) | 0xE0; in utf_16le_to_utf_8_truncated()
222 *utf_8++ = ((uc >> 6) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
223 *utf_8++ = ((uc >> 0) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
236 *utf_8++ = ((uc >> 6) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
237 *utf_8++ = ((uc >> 0) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
254 *utf_8 = '\0'; in utf_16le_to_utf_8_truncated()
[all …]