Home
last modified time | relevance | path

Searched refs:first_glyph (Results 1 – 7 of 7) sorted by relevance

/external/harfbuzz/src/
Dharfbuzz-hangul.c232 int first_glyph = 0; in HB_HangulShape() local
246 syllable.glyphs = item->glyphs + first_glyph; in HB_HangulShape()
247 syllable.attributes = item->attributes + first_glyph; in HB_HangulShape()
248 syllable.offsets = item->offsets + first_glyph; in HB_HangulShape()
249 syllable.advances = item->advances + first_glyph; in HB_HangulShape()
250 syllable.num_glyphs = item->num_glyphs - first_glyph; in HB_HangulShape()
257 logClusters[i-item->item.pos] = first_glyph; in HB_HangulShape()
259 first_glyph += syllable.num_glyphs; in HB_HangulShape()
261 item->num_glyphs = first_glyph; in HB_HangulShape()
Dharfbuzz-tibetan.c213 int first_glyph = 0; in HB_TibetanShape() local
232 syllable.glyphs = item->glyphs + first_glyph; in HB_TibetanShape()
233 syllable.attributes = item->attributes + first_glyph; in HB_TibetanShape()
234 syllable.offsets = item->offsets + first_glyph; in HB_TibetanShape()
235 syllable.advances = item->advances + first_glyph; in HB_TibetanShape()
236 syllable.num_glyphs = item->num_glyphs - first_glyph; in HB_TibetanShape()
243 logClusters[i-item->item.pos] = first_glyph; in HB_TibetanShape()
245 first_glyph += syllable.num_glyphs; in HB_TibetanShape()
247 item->num_glyphs = first_glyph; in HB_TibetanShape()
Dharfbuzz-myanmar.c466 int first_glyph = 0; in HB_MyanmarShape() local
485 syllable.glyphs = item->glyphs + first_glyph; in HB_MyanmarShape()
486 syllable.attributes = item->attributes + first_glyph; in HB_MyanmarShape()
487 syllable.advances = item->advances + first_glyph; in HB_MyanmarShape()
488 syllable.offsets = item->offsets + first_glyph; in HB_MyanmarShape()
489 syllable.num_glyphs = item->num_glyphs - first_glyph; in HB_MyanmarShape()
498 for (i = first_glyph; i < first_glyph + (int)syllable.num_glyphs; ++i) in HB_MyanmarShape()
502 MMDEBUG(" %d -> glyph %d", i, first_glyph); in HB_MyanmarShape()
503 logClusters[i-item->item.pos] = first_glyph; in HB_MyanmarShape()
506 first_glyph += syllable.num_glyphs; in HB_MyanmarShape()
[all …]
Dharfbuzz-khmer.c599 int first_glyph = 0; in HB_KhmerShape() local
618 syllable.glyphs = item->glyphs + first_glyph; in HB_KhmerShape()
619 syllable.attributes = item->attributes + first_glyph; in HB_KhmerShape()
620 syllable.offsets = item->offsets + first_glyph; in HB_KhmerShape()
621 syllable.advances = item->advances + first_glyph; in HB_KhmerShape()
622 syllable.num_glyphs = item->num_glyphs - first_glyph; in HB_KhmerShape()
630 for (i = first_glyph; i < first_glyph + (int)syllable.num_glyphs; ++i) in HB_KhmerShape()
634 KHDEBUG(" %d -> glyph %d", i, first_glyph); in HB_KhmerShape()
635 logClusters[i-item->item.pos] = first_glyph; in HB_KhmerShape()
638 first_glyph += syllable.num_glyphs; in HB_KhmerShape()
[all …]
Dharfbuzz-indic.cpp1832 int first_glyph = 0; in HB_IndicShape() local
1844 syllable.glyphs = item->glyphs + first_glyph; in HB_IndicShape()
1845 syllable.attributes = item->attributes + first_glyph; in HB_IndicShape()
1846 syllable.offsets = item->offsets + first_glyph; in HB_IndicShape()
1847 syllable.advances = item->advances + first_glyph; in HB_IndicShape()
1848 syllable.num_glyphs = item->num_glyphs - first_glyph; in HB_IndicShape()
1857 for (g = first_glyph; g < first_glyph + syllable.num_glyphs; ++g) in HB_IndicShape()
1862 IDEBUG(" %d -> glyph %d", i, first_glyph); in HB_IndicShape()
1863 logClusters[i-item->item.pos] = first_glyph; in HB_IndicShape()
1866 first_glyph += syllable.num_glyphs; in HB_IndicShape()
[all …]
/external/freetype/src/sfnt/
Dttsbit.c354 if ( range->last_glyph < range->first_glyph ) in Load_SBit_Range()
360 num_glyphs = range->last_glyph - range->first_glyph + 1L; in Load_SBit_Range()
557 range->first_glyph = FT_GET_USHORT(); in tt_face_load_eblc()
731 if ( glyph_index >= (FT_UInt)range->first_glyph && in find_sbit_range()
734 FT_UShort delta = (FT_UShort)( glyph_index - range->first_glyph ); in find_sbit_range()
/external/freetype/include/freetype/internal/
Dtttypes.h591 FT_UShort first_glyph; member