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

1 2

  /external/harfbuzz_ng/util/
helper-cairo.hh 56 unsigned int num_glyphs; member in struct:helper_cairo_line_t
73 *x_advance = glyphs[num_glyphs].x;
74 *y_advance = glyphs[num_glyphs].y;
options.hh 215 unsigned int num_glyphs = hb_buffer_get_length (buffer); local
217 for (unsigned int i = 0; i < num_glyphs; i++)
275 unsigned int num_glyphs; local
276 hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, &num_glyphs);
278 for (unsigned int i = 1; i < num_glyphs; i++)
311 unsigned int num_glyphs; local
312 hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, &num_glyphs);
322 for (unsigned int end = 1; end < num_glyphs + 1; end++)
324 if (end < num_glyphs &&
330 if (end == num_glyphs)
    [all...]
options.cc 867 unsigned int num_glyphs = hb_buffer_get_length (buffer); local
871 for (unsigned int i = 0; i < num_glyphs; i++)
889 unsigned int num_glyphs = hb_buffer_get_length (buffer); local
892 while (start < num_glyphs)
896 start += hb_buffer_serialize_glyphs (buffer, start, 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_
  /external/freetype/src/type1/
t1load.h 42 FT_Int num_glyphs; member in struct:T1_Loader_
t1load.c 1724 FT_Int n, num_glyphs; local
    [all...]
  /external/freetype/src/type42/
t42parse.h 50 FT_Int num_glyphs; member in struct:T42_Loader_
  /external/freetype/src/otvalid/
otvmod.c 85 FT_UInt num_glyphs = (FT_UInt)face->num_glyphs; local
96 if ( face->num_glyphs > 0xFFFFL )
99 face->num_glyphs ));
101 num_glyphs = 0xFFFF;
164 otv_GPOS_validate( gpos, num_glyphs, &valid );
174 otv_GSUB_validate( gsub, num_glyphs, &valid );
184 otv_GDEF_validate( gdef, gsub, gpos, num_glyphs, &valid );
194 otv_JSTF_validate( jstf, gsub, gpos, num_glyphs, &valid );
204 otv_MATH_validate( math, num_glyphs, &valid )
    [all...]
  /external/freetype/src/sfnt/
ttcmap.h 135 FT_UInt num_glyphs; member in struct:TT_ValidatorRec_
141 #define TT_VALID_GLYPH_COUNT( x ) TT_VALIDATOR( x )->num_glyphs
ttpost.c 167 FT_Int num_glyphs; local
174 if ( FT_READ_USHORT( num_glyphs ) )
183 if ( num_glyphs > face->max_profile.numGlyphs )
194 if ( FT_NEW_ARRAY ( glyph_indices, num_glyphs ) ||
195 FT_FRAME_ENTER( num_glyphs * 2L ) )
198 for ( n = 0; n < num_glyphs; n++ )
211 for ( n = 0; n < num_glyphs; n++ )
289 table->num_glyphs = (FT_UShort)num_glyphs;
322 FT_Int num_glyphs; local
    [all...]
ttsbit.c 1355 FT_ULong mm, num_glyphs; local
1391 FT_ULong image_size, mm, num_glyphs; local
    [all...]
  /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-glyf-table.hh 103 /* Unknown format. Leave num_glyphs=0, that takes care of disabling us. */
115 num_glyphs = MAX (1u, hb_blob_get_length (loca_blob) / (short_offset ? 2 : 4)) - 1;
128 if (unlikely (glyph >= num_glyphs))
163 unsigned int num_glyphs; member in struct:OT::glyf::accelerator_t
hb-graphite2.cc 208 unsigned int num_glyphs; member in struct:hb_graphite2_cluster_t
321 clusters[ci-1].num_glyphs += clusters[ci].num_glyphs;
333 c->num_glyphs = 0;
344 clusters[ci].num_glyphs++;
358 for (unsigned int j = 0; j < clusters[i].num_glyphs; ++j)
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, (int(*)(const OT::GlyphID*, const OT::GlyphID *)) 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-coretext.cc 1106 unsigned int num_glyphs = CTRunGetGlyphCount (run); local
    [all...]
  /external/sfntly/cpp/src/sample/subtly/
font_info.cc 214 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/pdf/
SkPDFMakeCIDGlyphWidthsArray.cpp 162 int num_glyphs = SkToInt(cache->getGlyphCount()); local
172 int lastIndex = num_glyphs;
  /external/skqp/src/pdf/
SkPDFMakeCIDGlyphWidthsArray.cpp 162 int num_glyphs = SkToInt(cache->getGlyphCount()); local
172 int lastIndex = num_glyphs;
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format4.cc 82 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;
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;
  /external/freetype/include/freetype/internal/
t1types.h 113 FT_Int num_glyphs; member in struct:T1_FontRec_
cfftypes.h 102 FT_UInt num_glyphs; member in struct:CFF_CharsetRec_
340 FT_UInt num_glyphs; member in struct:CFF_FontRec_
  /external/freetype/include/freetype/
freetype.h 1076 FT_Long num_glyphs; member in struct:FT_FaceRec_
    [all...]

Completed in 2284 milliseconds

1 2