Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-directwrite.cc576 unsigned int chars_len = 0; in _hb_directwrite_shape() local
580 buffer->info[i].utf16_index () = chars_len; in _hb_directwrite_shape()
582 textString[chars_len++] = c; in _hb_directwrite_shape()
584 textString[chars_len++] = 0xFFFDu; in _hb_directwrite_shape()
587 textString[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_directwrite_shape()
588 textString[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_directwrite_shape()
592 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_directwrite_shape()
594 chars_len = 0; in _hb_directwrite_shape()
599 log_clusters[chars_len++] = cluster; in _hb_directwrite_shape()
601 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_directwrite_shape()
[all …]
Dhb-coretext.cc704 unsigned int chars_len = 0; in _hb_coretext_shape() local
708 pchars[chars_len++] = c; in _hb_coretext_shape()
710 pchars[chars_len++] = 0xFFFDu; in _hb_coretext_shape()
712 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_coretext_shape()
713 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_coretext_shape()
717 ALLOCATE_ARRAY (unsigned int, log_clusters, chars_len, ((void)nullptr) /*nothing*/); in _hb_coretext_shape()
718 chars_len = 0; in _hb_coretext_shape()
723 log_clusters[chars_len++] = cluster; in _hb_coretext_shape()
725 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_coretext_shape()
772 pchars, chars_len, in _hb_coretext_shape()
[all …]
Dhb-uniscribe.cc621 unsigned int chars_len = 0; in _hb_uniscribe_shape() local
625 buffer->info[i].utf16_index() = chars_len; in _hb_uniscribe_shape()
627 pchars[chars_len++] = c; in _hb_uniscribe_shape()
629 pchars[chars_len++] = 0xFFFDu; in _hb_uniscribe_shape()
631 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_uniscribe_shape()
632 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_uniscribe_shape()
636 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_uniscribe_shape()
637 ALLOCATE_ARRAY (SCRIPT_CHARPROP, char_props, chars_len); in _hb_uniscribe_shape()
642 chars_len = 0; in _hb_uniscribe_shape()
647 log_clusters[chars_len++] = cluster; in _hb_uniscribe_shape()
[all …]
Dhb-ms-feature-ranges.cc140 unsigned int chars_len, in hb_ms_make_feature_ranges() argument
149 for (unsigned int i = chars_offset; i < chars_len; i++) in hb_ms_make_feature_ranges()
Dhb-ms-feature-ranges.hh91 unsigned int chars_len,
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-coretext.cc623 unsigned int chars_len = 0; in _hb_coretext_shape() local
627 pchars[chars_len++] = c; in _hb_coretext_shape()
629 pchars[chars_len++] = 0xFFFDu; in _hb_coretext_shape()
631 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_coretext_shape()
632 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_coretext_shape()
636 ALLOCATE_ARRAY (unsigned int, log_clusters, chars_len, /*nothing*/); in _hb_coretext_shape()
637 chars_len = 0; in _hb_coretext_shape()
642 log_clusters[chars_len++] = cluster; in _hb_coretext_shape()
644 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_coretext_shape()
691 pchars, chars_len, in _hb_coretext_shape()
[all …]
Dhb-uniscribe.cc746 unsigned int chars_len = 0; in _hb_uniscribe_shape() local
750 buffer->info[i].utf16_index() = chars_len; in _hb_uniscribe_shape()
752 pchars[chars_len++] = c; in _hb_uniscribe_shape()
754 pchars[chars_len++] = 0xFFFDu; in _hb_uniscribe_shape()
756 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_uniscribe_shape()
757 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_uniscribe_shape()
761 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_uniscribe_shape()
762 ALLOCATE_ARRAY (SCRIPT_CHARPROP, char_props, chars_len); in _hb_uniscribe_shape()
767 chars_len = 0; in _hb_uniscribe_shape()
772 log_clusters[chars_len++] = cluster; in _hb_uniscribe_shape()
[all …]
Dhb-directwrite.cc544 unsigned int chars_len = 0; in _hb_directwrite_shape_full() local
548 buffer->info[i].utf16_index () = chars_len; in _hb_directwrite_shape_full()
550 textString[chars_len++] = c; in _hb_directwrite_shape_full()
552 textString[chars_len++] = 0xFFFDu; in _hb_directwrite_shape_full()
555 textString[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_directwrite_shape_full()
556 textString[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_directwrite_shape_full()
560 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_directwrite_shape_full()
562 chars_len = 0; in _hb_directwrite_shape_full()
567 log_clusters[chars_len++] = cluster; in _hb_directwrite_shape_full()
569 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_directwrite_shape_full()
/third_party/harfbuzz/src/
Dhb-coretext.cc666 unsigned int chars_len = 0; in _hb_coretext_shape() local
670 pchars[chars_len++] = c; in _hb_coretext_shape()
672 pchars[chars_len++] = 0xFFFDu; in _hb_coretext_shape()
674 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_coretext_shape()
675 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_coretext_shape()
679 ALLOCATE_ARRAY (unsigned int, log_clusters, chars_len, ((void)nullptr) /*nothing*/); in _hb_coretext_shape()
680 chars_len = 0; in _hb_coretext_shape()
685 log_clusters[chars_len++] = cluster; in _hb_coretext_shape()
687 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_coretext_shape()
734 pchars, chars_len, in _hb_coretext_shape()
[all …]
Dhb-directwrite.cc586 unsigned int chars_len = 0; in _hb_directwrite_shape_full() local
590 buffer->info[i].utf16_index () = chars_len; in _hb_directwrite_shape_full()
592 textString[chars_len++] = c; in _hb_directwrite_shape_full()
594 textString[chars_len++] = 0xFFFDu; in _hb_directwrite_shape_full()
597 textString[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_directwrite_shape_full()
598 textString[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_directwrite_shape_full()
602 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_directwrite_shape_full()
604 chars_len = 0; in _hb_directwrite_shape_full()
609 log_clusters[chars_len++] = cluster; in _hb_directwrite_shape_full()
611 log_clusters[chars_len++] = cluster; /* Surrogates. */ in _hb_directwrite_shape_full()
[all …]
Dhb-uniscribe.cc767 unsigned int chars_len = 0; in _hb_uniscribe_shape() local
771 buffer->info[i].utf16_index() = chars_len; in _hb_uniscribe_shape()
773 pchars[chars_len++] = c; in _hb_uniscribe_shape()
775 pchars[chars_len++] = 0xFFFDu; in _hb_uniscribe_shape()
777 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); in _hb_uniscribe_shape()
778 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); in _hb_uniscribe_shape()
782 ALLOCATE_ARRAY (WORD, log_clusters, chars_len); in _hb_uniscribe_shape()
783 ALLOCATE_ARRAY (SCRIPT_CHARPROP, char_props, chars_len); in _hb_uniscribe_shape()
788 chars_len = 0; in _hb_uniscribe_shape()
793 log_clusters[chars_len++] = cluster; in _hb_uniscribe_shape()
[all …]