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.hh73 unsigned int segCount; in get_glyph() local
81 segCount = this->segCountX2 / 2; in get_glyph()
83 startCount = endCount + segCount + 1; in get_glyph()
84 idDelta = startCount + segCount; in get_glyph()
85 idRangeOffset = idDelta + segCount; in get_glyph()
86 glyphIdArray = idRangeOffset + segCount; in get_glyph()
87 glyphIdArrayLength = (this->length - 16 - 8 * segCount) / 2; in get_glyph()
90 int min = 0, max = (int) segCount - 1; in get_glyph()
115 unsigned int index = rangeOffset / 2 + (codepoint - startCount[i]) + i - segCount; in get_glyph()
161 USHORT endCount[segCount]; /* End characterCode for each segment,
[all …]
/external/icu/icu4c/source/samples/layout/
Dcmaps.cpp113 le_uint16 segCount = SWAPW(header->segCountX2) / 2; in CMAPFormat4Mapper() local
118 fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad... in CMAPFormat4Mapper()
119 fIdDelta = &fStartCodes[segCount]; in CMAPFormat4Mapper()
120 fIdRangeOffset = &fIdDelta[segCount]; in CMAPFormat4Mapper()
/external/icu/icu4c/source/test/perf/leperf/
Dcmaps.cpp154 le_uint16 segCount = SWAPW(header->segCountX2) / 2; in CMAPFormat4Mapper() local
159 fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad... in CMAPFormat4Mapper()
160 fIdDelta = &fStartCodes[segCount]; in CMAPFormat4Mapper()
161 fIdRangeOffset = &fIdDelta[segCount]; in CMAPFormat4Mapper()
/external/icu/icu4c/source/test/letest/
Dcmaps.cpp157 le_uint16 segCount = SWAPW(header->segCountX2) / 2; in CMAPFormat4Mapper() local
162 fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad... in CMAPFormat4Mapper()
163 fIdDelta = &fStartCodes[segCount]; in CMAPFormat4Mapper()
164 fIdRangeOffset = &fIdDelta[segCount]; in CMAPFormat4Mapper()
/external/skia/src/utils/
DSkDashPath.cpp233 int segCount = 0; in FilterDashPath() local
277 ++segCount; in FilterDashPath()
309 ++segCount; in FilterDashPath()
313 if (segCount > 1) { in FilterDashPath()
/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 …]