HomeSort by relevance Sort by last modified time
    Searched refs:num_glyphs (Results 1 - 25 of 34) sorted by null

1 2

  /external/freetype/src/sfnt/
ttpost.c 161 FT_Int num_glyphs; local
168 if ( FT_READ_USHORT( num_glyphs ) )
177 if ( num_glyphs > face->max_profile.numGlyphs )
188 if ( FT_NEW_ARRAY ( glyph_indices, num_glyphs ) ||
189 FT_FRAME_ENTER( num_glyphs * 2L ) )
192 for ( n = 0; n < num_glyphs; n++ )
205 for ( n = 0; n < num_glyphs; n++ )
247 table->num_glyphs = (FT_UShort)num_glyphs;
279 FT_Int num_glyphs; local
    [all...]
ttcmap.h 102 FT_UInt num_glyphs; member in struct:TT_ValidatorRec_
108 #define TT_VALID_GLYPH_COUNT( x ) TT_VALIDATOR( x )->num_glyphs
sfdriver.c 174 if ( root->num_glyphs < 0 )
176 else if ( ( FT_ULong ) root->num_glyphs < FT_UINT_MAX )
177 max_gid = ( FT_UInt ) root->num_glyphs;
180 FT_UINT_MAX, root->num_glyphs ));
ttsbit0.c 885 FT_ULong mm, num_glyphs; local
891 num_glyphs = FT_NEXT_ULONG( p );
894 if ( p + ( num_glyphs + 1 ) * 4 < p )
897 if ( p + ( num_glyphs + 1 ) * 4 > p_limit )
900 for ( mm = 0; mm < num_glyphs; mm++ )
915 if ( mm >= num_glyphs )
922 FT_ULong image_size, mm, num_glyphs; local
933 num_glyphs = FT_NEXT_ULONG( p );
936 if ( p + 2 * num_glyphs < p )
939 if ( p + 2 * num_glyphs > p_limit
    [all...]
ttsbit.c 285 range->num_glyphs = count;
348 FT_ULong num_glyphs, n; local
360 num_glyphs = range->last_glyph - range->first_glyph + 1L;
361 range->num_glyphs = num_glyphs;
362 num_glyphs++; /* XXX: BEWARE - see spec */
366 if ( FT_NEW_ARRAY( range->glyph_offsets, num_glyphs ) ||
367 FT_FRAME_ENTER( num_glyphs * size_elem ) )
370 for ( n = 0; n < num_glyphs; n++ )
755 for ( n = 0; n < range->num_glyphs; n++
    [all...]
  /external/freetype/src/psaux/
t1cmap.h 47 FT_UInt num_glyphs; member in struct:T1_CMapStdRec_
t1cmap.c 42 cmap->num_glyphs = face->type1.num_glyphs;
55 cmap->num_glyphs = 0;
80 for ( n = 0; n < cmap->num_glyphs; n++ )
284 face->type1.num_glyphs,
  /external/freetype/src/cff/
cffload.c 654 FT_UInt num_glyphs,
673 fdselect->data_size = num_glyphs;
769 FT_UInt num_glyphs,
781 for ( i = 0; i < num_glyphs; i++ )
792 for ( j = num_glyphs - 1; j >= 0 ; j-- )
796 charset->num_glyphs = num_glyphs;
843 FT_UInt num_glyphs,
869 if ( FT_NEW_ARRAY( charset->sids, num_glyphs ) )
878 if ( num_glyphs > 0
    [all...]
cfftypes.h 100 FT_UInt num_glyphs; member in struct:CFF_CharsetRec_
224 FT_UInt num_glyphs; member in struct:CFF_FontRec_
cffgload.h 153 FT_UInt num_glyphs; /* number of glyphs in font */ member in struct:CFF_Decoder_
cffcmap.c 152 cff->num_glyphs,
cffdrivr.c 282 for ( i = 0; i < cff->num_glyphs; i++ )
544 if ( glyph_index > cff->num_glyphs )
cffobjs.c 550 cffface->num_glyphs = cff->num_glyphs;
680 cffface->num_glyphs = cff->charset.max_cid;
682 cffface->num_glyphs = cff->charstrings_index.count;
  /external/webkit/WebCore/platform/graphics/gtk/
GlyphPageTreeNodePango.cpp 60 if (glyphs->num_glyphs == 1)
63 g_warning("didn't get 1 glyph but %d", glyphs->num_glyphs);
  /external/freetype/src/base/
ftadvanc.c 81 if ( gindex >= (FT_UInt)face->num_glyphs )
119 num = (FT_UInt)face->num_glyphs;
ftpatent.c 169 for ( gindex = 0; gindex < (FT_UInt)face->num_glyphs; gindex++ )
  /external/freetype/src/psnames/
psmodule.c 301 FT_UInt num_glyphs,
316 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
326 for ( n = 0; n < num_glyphs; n++ )
377 if ( count < num_glyphs / 2 )
379 (void)FT_RENEW_ARRAY( table->maps, num_glyphs, count );
  /external/freetype/src/truetype/
ttpload.c 113 if ( face->num_locations != (FT_ULong)face->root.num_glyphs )
116 face->num_locations, face->root.num_glyphs ));
119 if ( face->num_locations < (FT_ULong)face->root.num_glyphs )
121 FT_Long new_loca_len = (FT_Long)face->root.num_glyphs << shift;
142 face->num_locations = face->root.num_glyphs;
ttdriver.c 306 if ( glyph_index >= (FT_UInt)face->num_glyphs &&
309 if ( glyph_index >= (FT_UInt)face->num_glyphs )
  /external/freetype/include/freetype/internal/services/
svpscmap.h 92 FT_UInt num_glyphs,
  /external/freetype/include/freetype/internal/
tttypes.h 600 FT_ULong num_glyphs; member in struct:TT_SBit_RangeRec_
769 FT_UShort num_glyphs; member in struct:TT_Post_20Rec_
794 FT_UShort num_glyphs; member in struct:TT_Post_25_
    [all...]
t1types.h 122 FT_Int num_glyphs; member in struct:T1_FontRec_
  /external/freetype/src/autofit/
afglobal.c 68 FT_Long glyph_count; /* same as face->num_glyphs */
195 face->num_glyphs * sizeof ( FT_Byte ) ) )
198 globals->glyph_count = face->num_glyphs;
  /external/webkit/WebCore/platform/wx/wxcode/gtk/
non-kerned-drawing.cpp 170 if (glyphs->num_glyphs == 1)
173 g_warning("didn't get 1 glyph but %d", glyphs->num_glyphs);
  /external/webkit/WebCore/platform/graphics/chromium/
FontLinux.cpp 259 return m_item.num_glyphs;
426 m_item.num_glyphs = m_maxGlyphs;
428 if (m_item.num_glyphs < m_maxGlyphs)
442 for (int iter = 0; iter < m_item.num_glyphs; ++iter) {
444 int i = isRTL ? m_item.num_glyphs - iter - 1 : iter;

Completed in 1446 milliseconds

1 2