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

1 2 3 4

  /external/freetype/src/sfnt/
ttpost.c 163 FT_Int num_glyphs; local
170 if ( FT_READ_USHORT( num_glyphs ) )
179 if ( num_glyphs > face->max_profile.numGlyphs )
190 if ( FT_NEW_ARRAY ( glyph_indices, num_glyphs ) ||
191 FT_FRAME_ENTER( num_glyphs * 2L ) )
194 for ( n = 0; n < num_glyphs; n++ )
207 for ( n = 0; n < num_glyphs; n++ )
285 table->num_glyphs = (FT_UShort)num_glyphs;
318 FT_Int num_glyphs; local
    [all...]
ttcmap.h 135 FT_UInt num_glyphs; member in struct:TT_ValidatorRec_
141 #define TT_VALID_GLYPH_COUNT( x ) TT_VALIDATOR( x )->num_glyphs
  /external/pdfium/third_party/freetype/src/sfnt/
ttpost.c 163 FT_Int num_glyphs; local
170 if ( FT_READ_USHORT( num_glyphs ) )
179 if ( num_glyphs > face->max_profile.numGlyphs )
190 if ( FT_NEW_ARRAY ( glyph_indices, num_glyphs ) ||
191 FT_FRAME_ENTER( num_glyphs * 2L ) )
194 for ( n = 0; n < num_glyphs; n++ )
207 for ( n = 0; n < num_glyphs; n++ )
285 table->num_glyphs = (FT_UShort)num_glyphs;
318 FT_Int num_glyphs; local
    [all...]
ttcmap.h 135 FT_UInt num_glyphs; member in struct:TT_ValidatorRec_
141 #define TT_VALID_GLYPH_COUNT( x ) TT_VALIDATOR( x )->num_glyphs
  /external/harfbuzz_ng/src/
hb-face-private.hh 55 mutable unsigned int num_glyphs; /* Number of glyphs. */ member in struct:hb_face_t
92 if (unlikely (num_glyphs == (unsigned int) -1))
94 return num_glyphs;
hb-ot-shape-complex-arabic-fallback.hh 54 unsigned int num_glyphs = 0; local
69 glyphs[num_glyphs].set (u_glyph);
70 substitutes[num_glyphs].set (s_glyph);
72 num_glyphs++;
75 if (!num_glyphs)
80 hb_stable_sort (&glyphs[0], num_glyphs, OT::GlyphID::cmp, &substitutes[0]);
82 OT::Supplier<OT::GlyphID> glyphs_supplier (glyphs, num_glyphs);
83 OT::Supplier<OT::GlyphID> substitutes_supplier (substitutes, num_glyphs);
93 num_glyphs);
hb-ot-layout-gsub-table.hh 96 unsigned int num_glyphs,
101 if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return_trace (false);
182 unsigned int num_glyphs)
186 if (unlikely (!substitute.serialize (c, substitutes, num_glyphs))) return_trace (false);
187 if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return_trace (false);
214 unsigned int num_glyphs)
220 if (num_glyphs) {
224 for (unsigned int i = 1; i < num_glyphs; i++)
232 case 1: return_trace (u.format1.serialize (c, glyphs, num_glyphs, delta));
233 case 2: return_trace (u.format2.serialize (c, glyphs, substitutes, num_glyphs));
    [all...]
  /external/harfbuzz_ng/util/
helper-cairo.hh 55 unsigned int num_glyphs; member in struct:helper_cairo_line_t
72 *x_advance = glyphs[num_glyphs].x;
73 *y_advance = glyphs[num_glyphs].y;
view-cairo.cc 107 for (unsigned i = 0; i < l.num_glyphs; i++) {
118 cairo_glyph_path (cr, l.glyphs, l.num_glyphs);
123 l.glyphs, l.num_glyphs,
127 cairo_show_glyphs (cr, l.glyphs, l.num_glyphs);
helper-cairo.cc 473 l->num_glyphs = hb_buffer_get_length (buffer);
476 l->glyphs = cairo_glyph_allocate (l->num_glyphs + 1);
481 l->num_clusters = l->num_glyphs ? 1 : 0;
482 for (unsigned int i = 1; i < l->num_glyphs; i++)
488 if ((l->num_glyphs && !l->glyphs) ||
498 for (i = 0; i < (int) l->num_glyphs; i++)
518 l->clusters[cluster].num_glyphs++;
520 for (i = l->num_glyphs - 2; i >= 0; i--) {
531 l->clusters[cluster].num_glyphs++;
535 for (i = 1; i < (int) l->num_glyphs; i++)
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.cc 75 int32_t num_glyphs)
76 : Table(header, data), num_glyphs_(num_glyphs) {
101 void HorizontalDeviceMetricsTable::Builder::SetNumGlyphs(int32_t num_glyphs) {
102 if (num_glyphs < 0) {
108 num_glyphs_ = num_glyphs;
112 table->num_glyphs_ = num_glyphs;
horizontal_metrics_table.cc 87 int32_t num_glyphs)
90 num_glyphs_(num_glyphs) {
130 void HorizontalMetricsTable::Builder::SetNumGlyphs(int32_t num_glyphs) {
131 assert(num_glyphs >= 0);
132 num_glyphs_ = num_glyphs;
135 table->num_glyphs_ = num_glyphs;
horizontal_device_metrics_table.h 42 void SetNumGlyphs(int32_t num_glyphs);
73 int32_t num_glyphs);
horizontal_metrics_table.h 43 void SetNumGlyphs(int32_t num_glyphs);
77 int32_t num_glyphs);
  /external/sfntly/cpp/src/sfntly/table/truetype/
loca_table.h 88 void SetNumGlyphs(int32_t num_glyphs);
144 int32_t num_glyphs() { return num_glyphs_; } function in class:sfntly::LocaTable
171 int32_t num_glyphs);
  /external/freetype/src/psaux/
t1cmap.h 47 FT_UInt num_glyphs; member in struct:T1_CMapStdRec_
t1cmap.c 42 cmap->num_glyphs = (FT_UInt)face->type1.num_glyphs;
55 cmap->num_glyphs = 0;
80 for ( n = 0; n < cmap->num_glyphs; n++ )
298 (FT_UInt)face->type1.num_glyphs,
  /external/pdfium/third_party/freetype/src/psaux/
t1cmap.h 47 FT_UInt num_glyphs; member in struct:T1_CMapStdRec_
t1cmap.c 42 cmap->num_glyphs = (FT_UInt)face->type1.num_glyphs;
55 cmap->num_glyphs = 0;
80 for ( n = 0; n < cmap->num_glyphs; n++ )
298 (FT_UInt)face->type1.num_glyphs,
  /external/pdfium/third_party/freetype/src/cff/
cffload.c 666 FT_UInt num_glyphs,
685 fdselect->data_size = num_glyphs;
788 FT_UInt num_glyphs,
800 for ( i = 0; i < num_glyphs; i++ )
812 for ( j = (FT_Long)num_glyphs - 1; j >= 0 ; j-- )
816 charset->num_glyphs = num_glyphs;
863 FT_UInt num_glyphs,
889 if ( FT_NEW_ARRAY( charset->sids, num_glyphs ) )
898 if ( num_glyphs > 0
    [all...]
  /external/sfntly/cpp/src/test/
verify_loca.cc 47 EXPECT_EQ(loca->num_glyphs(), LOCA_NUM_LOCAS - 1);
  /external/freetype/src/truetype/
ttpload.c 123 if ( face->num_locations != (FT_ULong)face->root.num_glyphs + 1 )
126 face->num_locations - 1, face->root.num_glyphs ));
129 if ( face->num_locations <= (FT_ULong)face->root.num_glyphs )
132 ( (FT_ULong)face->root.num_glyphs + 1 ) << shift;
163 face->num_locations = (FT_ULong)face->root.num_glyphs + 1;
171 face->root.num_glyphs = face->num_locations
174 FT_TRACE2(( "adjusting num_glyphs to %d\n",
175 face->root.num_glyphs ));
  /external/pdfium/third_party/freetype/src/truetype/
ttpload.c 113 if ( face->num_locations != (FT_ULong)face->root.num_glyphs + 1 )
116 face->num_locations - 1, face->root.num_glyphs ));
119 if ( face->num_locations <= (FT_ULong)face->root.num_glyphs )
122 ( (FT_ULong)face->root.num_glyphs + 1 ) << shift;
149 face->num_locations = (FT_ULong)face->root.num_glyphs + 1;
157 face->root.num_glyphs = face->num_locations
160 FT_TRACE2(( "adjusting num_glyphs to %d\n",
161 face->root.num_glyphs ));
  /external/freetype/src/cff/
cffload.c 699 FT_UInt num_glyphs,
718 fdselect->data_size = num_glyphs;
827 FT_UInt num_glyphs,
839 for ( i = 0; i < num_glyphs; i++ )
851 for ( j = (FT_Long)num_glyphs - 1; j >= 0; j-- )
855 charset->num_glyphs = num_glyphs;
902 FT_UInt num_glyphs,
928 if ( FT_NEW_ARRAY( charset->sids, num_glyphs ) )
937 if ( num_glyphs > 0
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format5.cc 82 int32_t num_glyphs = data->ReadULongAsInt(table_offset + local
84 return num_glyphs;
291 int32_t num_glyphs = IndexSubTableFormat5::NumGlyphs(data, 0); local
292 for (int32_t i = 0; i < num_glyphs; ++i) {
306 int32_t num_glyphs = IndexSubTableFormat5::NumGlyphs(data, local
311 num_glyphs * DataSize::kUSHORT;

Completed in 1835 milliseconds

1 2 3 4