Lines Matching refs:char_count

675     int char_count;  in MakeFontPage()  local
697 char_count = lastchar - firstchar + 1; in MakeFontPage()
712 compressed_glyph_array = new GX_COMPRESSED_GLYPH[char_count]; in MakeFontPage()
713 memset(compressed_glyph_array, 0, char_count * sizeof(GX_COMPRESSED_GLYPH)); in MakeFontPage()
723 kerning_glyph_array = new GX_KERNING_GLYPH[char_count]; in MakeFontPage()
724 memset(kerning_glyph_array, 0, char_count * sizeof(GX_KERNING_GLYPH)); in MakeFontPage()
732 glyph_array = new GX_GLYPH[char_count]; in MakeFontPage()
733 memset(glyph_array, 0, char_count * sizeof(GX_GLYPH)); in MakeFontPage()
739 glyph_array = new GX_GLYPH[char_count]; in MakeFontPage()
740 memset(glyph_array, 0, char_count * sizeof(GX_GLYPH)); in MakeFontPage()
1319 int char_count = dest->gx_font_last_glyph - dest->gx_font_first_glyph + 1; in CopyGlyphs() local
1321 GX_GLYPH *glyph_array = new GX_GLYPH[char_count]; in CopyGlyphs()
1322 memset(glyph_array, 0, char_count * sizeof(GX_GLYPH)); in CopyGlyphs()
1330 while(char_count--) in CopyGlyphs()
1355 int char_count = dest->gx_font_last_glyph - dest->gx_font_first_glyph + 1; in CopyKerningGlyphs() local
1356 GX_KERNING_GLYPH *glyph_array = new GX_KERNING_GLYPH[char_count]; in CopyKerningGlyphs()
1357 memset(glyph_array, 0, char_count * sizeof(GX_KERNING_GLYPH)); in CopyKerningGlyphs()
1364 while (char_count--) in CopyKerningGlyphs()
1397 int char_count = dest->gx_font_last_glyph - dest->gx_font_first_glyph + 1; in CopyCompressedGlyphs() local
1399 GX_COMPRESSED_GLYPH *glyph_array = new GX_COMPRESSED_GLYPH[char_count]; in CopyCompressedGlyphs()
1400 memset(glyph_array, 0, char_count * sizeof(GX_COMPRESSED_GLYPH)); in CopyCompressedGlyphs()
1408 while (char_count--) in CopyCompressedGlyphs()