Home
last modified time | relevance | path

Searched refs:segCount (Results 1 – 6 of 6) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-ot-cmap-table.hh76 segCount = subtable->segCountX2 / 2; in init()
78 startCount = endCount + segCount + 1; in init()
79 idDelta = startCount + segCount; in init()
80 idRangeOffset = idDelta + segCount; in init()
81 glyphIdArray = idRangeOffset + segCount; in init()
82 glyphIdArrayLength = (subtable->length - 16 - 8 * segCount) / 2; in init()
90 int min = 0, max = (int) thiz->segCount - 1; in get_glyph_func()
117 unsigned int index = rangeOffset / 2 + (codepoint - thiz->startCount[i]) + i - thiz->segCount; in get_glyph_func()
135 unsigned int segCount; member
179 USHORT endCount[segCount]; /* End characterCode for each segment,
[all …]
/external/icu/icu4c/source/samples/layout/
Dcmaps.cpp119 le_uint16 segCount = SWAPW(header->segCountX2) / 2; in CMAPFormat4Mapper() local
124 fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad... in CMAPFormat4Mapper()
125 fIdDelta = &fStartCodes[segCount]; in CMAPFormat4Mapper()
126 fIdRangeOffset = &fIdDelta[segCount]; in CMAPFormat4Mapper()
/external/icu/icu4c/source/test/letest/
Dcmaps.cpp159 le_uint16 segCount = SWAPW(header->segCountX2) / 2; in CMAPFormat4Mapper() local
164 fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad... in CMAPFormat4Mapper()
165 fIdDelta = &fStartCodes[segCount]; in CMAPFormat4Mapper()
166 fIdRangeOffset = &fIdDelta[segCount]; in CMAPFormat4Mapper()
/external/icu/icu4c/source/test/perf/leperf/
Dcmaps.cpp160 le_uint16 segCount = SWAPW(header->segCountX2) / 2; in CMAPFormat4Mapper() local
165 fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad... in CMAPFormat4Mapper()
166 fIdDelta = &fStartCodes[segCount]; in CMAPFormat4Mapper()
167 fIdRangeOffset = &fIdDelta[segCount]; in CMAPFormat4Mapper()
/external/skia/src/utils/
DSkDashPath.cpp229 int segCount = 0; in InternalFilter() local
273 ++segCount; in InternalFilter()
305 ++segCount; in InternalFilter()
309 if (segCount > 1) { in InternalFilter()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py645 segCount = segCountX2 // 2
655 endCode = allCodes[:segCount]
656 allCodes = allCodes[segCount+1:] # the +1 is skipping the reservedPad field
657 startCode = allCodes[:segCount]
658 allCodes = allCodes[segCount:]
659 idDelta = allCodes[:segCount]
660 allCodes = allCodes[segCount:]
661 idRangeOffset = allCodes[:segCount]
662 glyphIndexArray = allCodes[segCount:]
778 segCount = len(endCode)
[all …]