[buffer] Cleanup / optimize UTF-16 parsing a bit

This commit is contained in:
Behdad Esfahbod 2012-09-25 12:26:12 -04:00
parent 1f66c3c1a0
commit 4445e5e2ec
1 changed files with 7 additions and 5 deletions

View File

@ -86,14 +86,16 @@ hb_utf_next (const uint16_t *text,
const uint16_t *end,
hb_codepoint_t *unicode)
{
uint16_t c = *text++;
hb_codepoint_t c = *text++;
if (unlikely (c >= 0xd800 && c < 0xdc00)) {
if (unlikely (hb_in_range<hb_codepoint_t> (c, 0xd800, 0xdbff)))
{
/* high surrogate */
uint16_t l;
if (text < end && ((l = *text), likely (l >= 0xdc00 && l < 0xe000))) {
hb_codepoint_t l;
if (text < end && ((l = *text), likely (hb_in_range<hb_codepoint_t> (l, 0xdc00, 0xdfff))))
{
/* low surrogate */
*unicode = ((hb_codepoint_t) ((c) - 0xd800) * 0x400 + (l) - 0xdc00 + 0x10000);
*unicode = (c << 10) + l - ((0xd800 << 10) - 0x10000 + 0xdc00);
text++;
} else
*unicode = -1;