Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-directwrite.cc705 uint32_t maxGlyphCount = 3 * textLength / 2 + 16; in _hb_directwrite_shape() local
735 uint16_t* clusterMap = (uint16_t*) malloc (maxGlyphCount * sizeof (uint16_t)); in _hb_directwrite_shape()
736 uint16_t* glyphIndices = (uint16_t*) malloc (maxGlyphCount * sizeof (uint16_t)); in _hb_directwrite_shape()
738 malloc (maxGlyphCount * sizeof (DWRITE_SHAPING_TEXT_PROPERTIES)); in _hb_directwrite_shape()
740 malloc (maxGlyphCount * sizeof (DWRITE_SHAPING_GLYPH_PROPERTIES)); in _hb_directwrite_shape()
744 featureRangeLengths, 1, maxGlyphCount, clusterMap, textProperties, glyphIndices, in _hb_directwrite_shape()
754 maxGlyphCount *= 2; in _hb_directwrite_shape()
764 float* glyphAdvances = (float*) malloc (maxGlyphCount * sizeof (float)); in _hb_directwrite_shape()
766 malloc(maxGlyphCount * sizeof (DWRITE_GLYPH_OFFSET)); in _hb_directwrite_shape()
806 malloc (maxGlyphCount * sizeof (DWRITE_JUSTIFICATION_OPPORTUNITY)); in _hb_directwrite_shape()
[all …]
/external/skia/include/core/
DSkFont.h144 uint16_t glyphs[], int maxGlyphCount) const;
/external/skia/src/core/
DSkFont.cpp62 uint16_t glyphs[], int maxGlyphCount) const { in textToGlyphs()