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

/netbsd-6-1-5-RELEASE/sbin/gpt/
H A Dgpt.c140 uint32_t utfchar; local
154 utfchar = le16toh(s16[s16idx++]);
155 if ((utfchar & 0xf800) == 0xd800) {
157 if ((utfchar & 0x400) != 0 || (c & 0xfc00) != 0xdc00)
158 utfchar = 0xfffd;
162 if (utfchar < 0x80) {
163 s8[s8idx++] = utfchar;
164 } else if (utfchar < 0x800) {
165 s8[s8idx++] = 0xc0 | (utfchar >> 6);
166 s8[s8idx++] = 0x80 | (utfchar
185 uint32_t utfchar = 0; local
[all...]

Completed in 54 milliseconds