Home
last modified time | relevance | path

Searched refs:maxGlyphCount (Results 1 – 3 of 3) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-directwrite.cc637 uint32_t maxGlyphCount = 3 * textLength / 2 + 16; in _hb_directwrite_shape_full() local
670 uint16_t* glyphIndices = (uint16_t*) malloc (maxGlyphCount * sizeof (uint16_t)); in _hb_directwrite_shape_full()
672 malloc (maxGlyphCount * sizeof (DWRITE_SHAPING_GLYPH_PROPERTIES)); in _hb_directwrite_shape_full()
676 featureRangeLengths, 1, maxGlyphCount, clusterMap, textProperties, glyphIndices, in _hb_directwrite_shape_full()
684 maxGlyphCount *= 2; in _hb_directwrite_shape_full()
694 float* glyphAdvances = (float*) malloc (maxGlyphCount * sizeof (float)); in _hb_directwrite_shape_full()
696 malloc(maxGlyphCount * sizeof (DWRITE_GLYPH_OFFSET)); in _hb_directwrite_shape_full()
740 malloc (maxGlyphCount * sizeof (DWRITE_JUSTIFICATION_OPPORTUNITY)); in _hb_directwrite_shape_full()
752 (float*) malloc (maxGlyphCount * sizeof (float)); in _hb_directwrite_shape_full()
778 uint16_t* modifiedGlyphIndices = (uint16_t*) malloc (maxGlyphCount * sizeof (uint16_t)); in _hb_directwrite_shape_full()
[all …]
/external/skia/include/core/
DSkFont.h149 SkGlyphID glyphs[], int maxGlyphCount) const;
/external/skia/src/core/
DSkFont.cpp58 uint16_t glyphs[], int maxGlyphCount) const { in textToGlyphs()