Lines Matching refs:totalGlyphCount
84 CFIndex totalGlyphCount = 0; in DoAATLayout() local
133 totalGlyphCount = CTLineGetGlyphCount(line); in DoAATLayout()
135 if (totalGlyphCount > 0) { in DoAATLayout()
136 glyph_info = xmalloc(totalGlyphCount * native_glyph_info_size); in DoAATLayout()
138 glyphIDs = (UInt16*)(locations + totalGlyphCount); in DoAATLayout()
139 glyphAdvances = xmalloc(totalGlyphCount * sizeof(Fixed)); in DoAATLayout()
140 totalGlyphCount = 0; in DoAATLayout()
164 glyphIDs[totalGlyphCount] = 0; in DoAATLayout()
166 glyphIDs[totalGlyphCount] = glyphs[j]; in DoAATLayout()
170 locations[totalGlyphCount].x = -FixedPStoTeXPoints(positions[j].y); in DoAATLayout()
171 locations[totalGlyphCount].y = FixedPStoTeXPoints(positions[j].x); in DoAATLayout()
173 locations[totalGlyphCount].x = FixedPStoTeXPoints(positions[j].x); in DoAATLayout()
174 locations[totalGlyphCount].y = -FixedPStoTeXPoints(positions[j].y); in DoAATLayout()
176 glyphAdvances[totalGlyphCount] = advances[j].width; in DoAATLayout()
177 totalGlyphCount++; in DoAATLayout()
186 native_glyph_count(node) = totalGlyphCount; in DoAATLayout()
192 if (totalGlyphCount > 0) { in DoAATLayout()
199 for (i = 0; i < totalGlyphCount; ++i) { in DoAATLayout()