Searched refs:chars_len (Results 1 – 3 of 3) sorted by relevance
/external/harfbuzz_ng/src/ |
D | hb-uniscribe.cc | 267 unsigned int chars_len = 0; in _hb_uniscribe_shape() local 270 buffer->info[i].utf16_index() = chars_len; in _hb_uniscribe_shape() 272 pchars[chars_len++] = c; in _hb_uniscribe_shape() 274 pchars[chars_len++] = 0xFFFD; in _hb_uniscribe_shape() 276 pchars[chars_len++] = 0xD800 + ((c - 0x10000) >> 10); in _hb_uniscribe_shape() 277 pchars[chars_len++] = 0xDC00 + ((c - 0x10000) & ((1 << 10) - 1)); in _hb_uniscribe_shape() 281 ALLOCATE_ARRAY (WCHAR, wchars, chars_len); in _hb_uniscribe_shape() 282 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_uniscribe_shape() 283 ALLOCATE_ARRAY (SCRIPT_CHARPROP, char_props, chars_len); in _hb_uniscribe_shape() 316 chars_len, in _hb_uniscribe_shape()
|
D | hb-old.cc | 291 unsigned int chars_len = 0; in _hb_old_shape() local 294 buffer->info[i].utf16_index() = chars_len; in _hb_old_shape() 296 pchars[chars_len++] = c; in _hb_old_shape() 298 pchars[chars_len++] = 0xFFFD; in _hb_old_shape() 300 pchars[chars_len++] = 0xD800 + ((c - 0x10000) >> 10); in _hb_old_shape() 301 pchars[chars_len++] = 0xDC00 + ((c - 0x10000) & ((1 << 10) - 1)); in _hb_old_shape() 314 ALLOCATE_ARRAY (const HB_UChar16, item.string, chars_len); in _hb_old_shape() 315 ALLOCATE_ARRAY (unsigned short, item.log_clusters, chars_len + 2); in _hb_old_shape() 316 item.stringLength = chars_len; in _hb_old_shape()
|
D | hb-coretext.cc | 196 unsigned int chars_len = 0; in _hb_coretext_shape() local 199 buffer->info[i].utf16_index() = chars_len; in _hb_coretext_shape() 201 pchars[chars_len++] = c; in _hb_coretext_shape() 203 pchars[chars_len++] = 0xFFFD; in _hb_coretext_shape() 205 pchars[chars_len++] = 0xD800 + ((c - 0x10000) >> 10); in _hb_coretext_shape() 206 pchars[chars_len++] = 0xDC00 + ((c - 0x10000) & ((1 << 10) - 1)); in _hb_coretext_shape() 213 pchars, chars_len, in _hb_coretext_shape()
|