HomeSort by relevance Sort by last modified time
    Searched full:num_tables (Results 1 - 20 of 20) sorted by null

  /external/freetype/src/sfnt/
ttkern.c 51 FT_UInt nn, num_tables; local
81 num_tables = FT_NEXT_USHORT( p );
83 if ( num_tables > 32 ) /* we only support up to 32 sub-tables */
84 num_tables = 32;
86 for ( nn = 0; nn < num_tables; nn++ )
ttload.c 74 limit = entry + face->num_tables;
154 /* - check that `num_tables' is valid (and adjust it if necessary) */
194 for ( nn = 0; nn < sfnt->num_tables; nn++ )
204 nn, nn == 1 ? "" : "s", sfnt->num_tables ));
205 sfnt->num_tables = nn;
276 sfnt->num_tables = valid_entries;
278 if ( sfnt->num_tables == 0 )
345 FT_FRAME_USHORT( num_tables ),
366 sfnt.search_range + sfnt.range_shift != sfnt.num_tables << 4 )
372 FT_TRACE2(( "-- Number of tables: %10u\n", sfnt.num_tables ));
    [all...]
sfobjs.c 438 FT_FRAME_USHORT( num_tables ),
464 woff.num_tables == 0 ||
465 44 + woff.num_tables * 20UL >= woff.length ||
466 12 + woff.num_tables * 16UL >= woff.totalSfntSize ||
485 x = woff.num_tables;
495 rangeShift = woff.num_tables * 16 - searchRange;
498 WRITE_USHORT( sfnt_header, woff.num_tables );
508 if ( FT_NEW_ARRAY( tables, woff.num_tables ) ||
509 FT_NEW_ARRAY( indices, woff.num_tables ) )
516 if ( FT_FRAME_ENTER( 20L * woff.num_tables ) )
    [all...]
sfdriver.c 125 *length = face->num_tables;
128 if ( idx >= face->num_tables )
  /external/pdfium/third_party/freetype/src/sfnt/
ttkern.c 51 FT_UInt nn, num_tables; local
81 num_tables = FT_NEXT_USHORT( p );
83 if ( num_tables > 32 ) /* we only support up to 32 sub-tables */
84 num_tables = 32;
86 for ( nn = 0; nn < num_tables; nn++ )
ttload.c 74 limit = entry + face->num_tables;
154 /* - check that `num_tables' is valid (and adjust it if necessary) */
194 for ( nn = 0; nn < sfnt->num_tables; nn++ )
204 nn, nn == 1 ? "" : "s", sfnt->num_tables ));
205 sfnt->num_tables = nn;
265 sfnt->num_tables = valid_entries;
267 if ( sfnt->num_tables == 0 )
334 FT_FRAME_USHORT( num_tables ),
355 sfnt.search_range + sfnt.range_shift != sfnt.num_tables << 4 )
361 FT_TRACE2(( "-- Number of tables: %10u\n", sfnt.num_tables ));
    [all...]
sfobjs.c 438 FT_FRAME_USHORT( num_tables ),
464 woff.num_tables == 0 ||
465 44 + woff.num_tables * 20UL >= woff.length ||
466 12 + woff.num_tables * 16UL >= woff.totalSfntSize ||
485 x = woff.num_tables;
495 rangeShift = woff.num_tables * 16 - searchRange;
498 WRITE_USHORT( sfnt_header, woff.num_tables );
508 if ( FT_NEW_ARRAY( tables, woff.num_tables ) ||
509 FT_NEW_ARRAY( indices, woff.num_tables ) )
516 if ( FT_FRAME_ENTER( 20L * woff.num_tables ) )
    [all...]
sfdriver.c 125 *length = face->num_tables;
128 if ( idx >= face->num_tables )
  /external/sfntly/cpp/src/test/
serialization_test.cc 53 EXPECT_EQ(original->num_tables(), serialized->num_tables());
119 EXPECT_EQ(original->num_tables(), serialized->num_tables());
  /external/harfbuzz_ng/src/
main.cc 97 int num_tables = font.get_table_count (); local
98 printf (" %d table(s) found in font\n", num_tables);
99 for (int n_table = 0; n_table < num_tables; n_table++) {
101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
  /external/sfntly/cpp/src/sample/subtly/
merger_main.cc 37 if (!font || font->num_tables() == 0) {
subsetter_main.cc 47 if (font->num_tables() == 0) {
  /external/freetype/include/internal/
tttypes.h 91 /* num_tables :: The number of tables in file. */
93 /* search_range :: Must be `16 * (max power of 2 <= num_tables)'. */
97 /* range_shift :: Must be `num_tables * 16 - search_range'. */
102 FT_UShort num_tables; member in struct:SFNT_HeaderRec_
158 FT_UShort num_tables; member in struct:WOFF_HeaderRec_
1258 FT_UShort num_tables; member in struct:TT_FaceRec_
    [all...]
  /external/pdfium/third_party/freetype/include/internal/
tttypes.h 91 /* num_tables :: The number of tables in file. */
93 /* search_range :: Must be `16 * (max power of 2 <= num_tables)'. */
97 /* range_shift :: Must be `num_tables * 16 - search_range'. */
102 FT_UShort num_tables; member in struct:SFNT_HeaderRec_
158 FT_UShort num_tables; member in struct:WOFF_HeaderRec_
1260 FT_UShort num_tables; member in struct:TT_FaceRec_
    [all...]
  /external/freetype/src/truetype/
ttpload.c 125 TT_Table limit = entry + face->num_tables;
ttobjs.c 358 for ( i = 0; i < face->num_tables; i++ )
    [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttpload.c 125 TT_Table limit = entry + face->num_tables;
ttobjs.c 358 for ( i = 0; i < face->num_tables; i++ )
    [all...]
  /external/sfntly/cpp/src/sfntly/
font.h 245 int32_t num_tables() { return (int32_t)tables_.size(); } function in class:sfntly::Font
font.cc 94 int32_t table_offset = Offset::kTableRecordBegin + num_tables() *

Completed in 981 milliseconds