Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-coretext.cc626 unsigned int chars_len = 0; in _hb_coretext_shape() local
630 pchars[chars_len++] = c; in _hb_coretext_shape()
632 pchars[chars_len++] = 0xFFFDu; in _hb_coretext_shape()
634 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_coretext_shape()
635 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); in _hb_coretext_shape()
639 ALLOCATE_ARRAY (unsigned int, log_clusters, chars_len, /*nothing*/); in _hb_coretext_shape()
640 chars_len = 0; in _hb_coretext_shape()
645 log_clusters[chars_len++] = cluster; in _hb_coretext_shape()
647 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_coretext_shape()
695 pchars, chars_len, in _hb_coretext_shape()
[all …]
Dhb-uniscribe.cc751 unsigned int chars_len = 0; in _hb_uniscribe_shape() local
755 buffer->info[i].utf16_index() = chars_len; in _hb_uniscribe_shape()
757 pchars[chars_len++] = c; in _hb_uniscribe_shape()
759 pchars[chars_len++] = 0xFFFDu; in _hb_uniscribe_shape()
761 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_uniscribe_shape()
762 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); in _hb_uniscribe_shape()
766 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_uniscribe_shape()
767 ALLOCATE_ARRAY (SCRIPT_CHARPROP, char_props, chars_len); in _hb_uniscribe_shape()
772 chars_len = 0; in _hb_uniscribe_shape()
777 log_clusters[chars_len++] = cluster; in _hb_uniscribe_shape()
[all …]