Searched refs:unicode (Results 1 – 3 of 3) sorted by relevance
493 uint32_t unicode; in utf8_to_utf32_codepoint() local500 unicode = src[0] & 0x1f; in utf8_to_utf32_codepoint()501 utf8_shift_and_mask(&unicode, src[1]); in utf8_to_utf32_codepoint()502 return unicode; in utf8_to_utf32_codepoint()504 unicode = src[0] & 0x0f; in utf8_to_utf32_codepoint()505 utf8_shift_and_mask(&unicode, src[1]); in utf8_to_utf32_codepoint()506 utf8_shift_and_mask(&unicode, src[2]); in utf8_to_utf32_codepoint()507 return unicode; in utf8_to_utf32_codepoint()509 unicode = src[0] & 0x07; in utf8_to_utf32_codepoint()510 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.