Searched refs:unicode (Results 1 – 3 of 3) sorted by relevance
491 uint32_t unicode; in utf8_to_utf32_codepoint() local498 unicode = src[0] & 0x1f; in utf8_to_utf32_codepoint()499 utf8_shift_and_mask(&unicode, src[1]); in utf8_to_utf32_codepoint()500 return unicode; in utf8_to_utf32_codepoint()502 unicode = src[0] & 0x0f; in utf8_to_utf32_codepoint()503 utf8_shift_and_mask(&unicode, src[1]); in utf8_to_utf32_codepoint()504 utf8_shift_and_mask(&unicode, src[2]); in utf8_to_utf32_codepoint()505 return unicode; in utf8_to_utf32_codepoint()507 unicode = src[0] & 0x07; in utf8_to_utf32_codepoint()508 utf8_shift_and_mask(&unicode, src[1]); in utf8_to_utf32_codepoint()[all …]
33 #define UTF8_SHIFT_AND_MASK(unicode, byte) \ argument34 (unicode)<<=6; (unicode) |= (0x3f & (byte));
279 http://www.unicode.org/Public/, http://www.unicode.org/reports/,280 and http://www.unicode.org/cldr/data/ . Unicode Software includes any282 http://www.unicode.org/Public/, http://www.unicode.org/reports/, and283 http://www.unicode.org/cldr/data/.295 under the Terms of Use in http://www.unicode.org/copyright.html.