Searched defs:num_glyphs (Results 1 - 25 of 45) sorted by relevance

12

/external/harfbuzz_ng/util/
H A Dhelper-cairo.hh51 unsigned int num_glyphs; member in struct:helper_cairo_line_t
68 *x_advance = glyphs[num_glyphs].x;
69 *y_advance = glyphs[num_glyphs].y;
/external/freetype/src/psaux/
H A Dt1cmap.h47 FT_UInt num_glyphs; member in struct:T1_CMapStdRec_
/external/pdfium/third_party/freetype/src/psaux/
H A Dt1cmap.h47 FT_UInt num_glyphs; member in struct:T1_CMapStdRec_
/external/pdfium/third_party/freetype/src/type1/
H A Dt1load.h42 FT_Int num_glyphs; member in struct:T1_Loader_
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.h88 void SetNumGlyphs(int32_t num_glyphs);
144 int32_t num_glyphs() { return num_glyphs_; } function in class:sfntly::LocaTable
171 int32_t num_glyphs);
H A Dloca_table.cc66 int32_t num_glyphs)
69 num_glyphs_(num_glyphs) {
138 void LocaTable::Builder::SetNumGlyphs(int32_t num_glyphs) { argument
139 num_glyphs_ = num_glyphs;
63 LocaTable(Header* header, ReadableFontData* data, int32_t format_version, int32_t num_glyphs) argument
/external/freetype/src/sfnt/
H A Dttcmap.h135 FT_UInt num_glyphs; member in struct:TT_ValidatorRec_
141 #define TT_VALID_GLYPH_COUNT( x ) TT_VALIDATOR( x )->num_glyphs
H A Dttpost.c163 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...]
/external/harfbuzz_ng/src/
H A Dhb-face-private.hh55 mutable unsigned int num_glyphs; member in struct:hb_face_t
88 if (unlikely (num_glyphs == (unsigned int) -1))
90 return num_glyphs;
H A Dhb-ot-shape-complex-arabic-fallback.hh54 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_bubble_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);
H A Dhb-graphite2.cc211 unsigned int num_glyphs; member in struct:hb_graphite2_cluster_t
313 clusters[ci-1].num_glyphs += clusters[ci].num_glyphs;
324 c->num_glyphs = 0;
327 clusters[ci].num_glyphs++;
337 for (unsigned int j = 0; j < clusters[i].num_glyphs; ++j)
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttcmap.h135 FT_UInt num_glyphs; member in struct:TT_ValidatorRec_
141 #define TT_VALID_GLYPH_COUNT( x ) TT_VALIDATOR( x )->num_glyphs
H A Dttpost.c163 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++ )
282 table->num_glyphs = (FT_UShort)num_glyphs;
315 FT_Int num_glyphs; local
[all...]
/external/sfntly/cpp/src/sfntly/table/core/
H A Dhorizontal_device_metrics_table.cc75 int32_t num_glyphs)
76 : Table(header, data), num_glyphs_(num_glyphs) {
101 void HorizontalDeviceMetricsTable::Builder::SetNumGlyphs(int32_t num_glyphs) { argument
102 if (num_glyphs < 0) {
108 num_glyphs_ = num_glyphs;
112 table->num_glyphs_ = num_glyphs;
72 HorizontalDeviceMetricsTable( Header* header, ReadableFontData* data, int32_t num_glyphs) argument
H A Dhorizontal_metrics_table.cc87 int32_t num_glyphs)
90 num_glyphs_(num_glyphs) {
130 void HorizontalMetricsTable::Builder::SetNumGlyphs(int32_t num_glyphs) { argument
131 assert(num_glyphs >= 0);
132 num_glyphs_ = num_glyphs;
135 table->num_glyphs_ = num_glyphs;
84 HorizontalMetricsTable(Header* header, ReadableFontData* data, int32_t num_hmetrics, int32_t num_glyphs) argument
H A Dmaximum_profile_table.cc125 void MaximumProfileTable::Builder::SetNumGlyphs(int32_t num_glyphs) { argument
126 InternalWriteData()->WriteUShort(Offset::kNumGlyphs, num_glyphs);
/external/sfntly/cpp/src/sample/subtly/
H A Dfont_info.cc214 if (glyph_id < 0 || glyph_id > loca_table_->num_glyphs()) {
217 loca_table_->num_glyphs());
243 int32_t num_glyphs = composite_glyph->NumGlyphs(); local
244 for (int32_t i = 0; i < num_glyphs; ++i) {
/external/skia/src/core/
H A DSkAdvancedTypefaceMetrics.cpp130 int num_glyphs,
160 int lastIndex = num_glyphs;
261 int num_glyphs,
267 int num_glyphs,
274 int num_glyphs,
281 int num_glyphs,
312 int num_glyphs,
128 getAdvanceData( FontHandle fontHandle, int num_glyphs, const uint32_t* subsetGlyphIDs, uint32_t subsetGlyphIDsLength, bool (*getAdvance)(FontHandle fontHandle, int gId, Data* data)) argument
/external/freetype/src/cff/
H A Dcffgload.h193 FT_UInt num_glyphs; /* number of glyphs in font */ member in struct:CFF_Decoder_
/external/freetype/src/psnames/
H A Dpsmodule.c302 FT_UInt num_glyphs,
317 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
327 for ( n = 0; n < num_glyphs; n++ )
378 if ( count < num_glyphs / 2 )
380 (void)FT_RENEW_ARRAY( table->maps, num_glyphs, count );
300 ps_unicodes_init( FT_Memory memory, PS_Unicodes table, FT_UInt num_glyphs, PS_GetGlyphNameFunc get_glyph_name, PS_FreeGlyphNameFunc free_glyph_name, FT_Pointer glyph_data ) argument
/external/pdfium/third_party/freetype/src/cff/
H A Dcffgload.h188 FT_UInt num_glyphs; /* number of glyphs in font */ member in struct:CFF_Decoder_
/external/pdfium/third_party/freetype/src/psnames/
H A Dpsmodule.c302 FT_UInt num_glyphs,
317 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
327 for ( n = 0; n < num_glyphs; n++ )
378 if ( count < num_glyphs / 2 )
380 (void)FT_RENEW_ARRAY( table->maps, num_glyphs, count );
300 ps_unicodes_init( FT_Memory memory, PS_Unicodes table, FT_UInt num_glyphs, PS_GetGlyphNameFunc get_glyph_name, PS_FreeGlyphNameFunc free_glyph_name, FT_Pointer glyph_data ) argument
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table_format4.cc82 int32_t num_glyphs = data->ReadULongAsInt(table_offset + local
84 return num_glyphs;
336 int32_t num_glyphs = IndexSubTableFormat4::NumGlyphs(data, local
341 num_glyphs * EblcTable::Offset::kIndexSubTable4_codeOffsetPair_offset;
H A Dindex_sub_table_format5.cc82 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;
/external/freetype/include/internal/
H A Dt1types.h111 FT_Int num_glyphs; member in struct:T1_FontRec_

Completed in 645 milliseconds

12