Searched defs:sfnt (Results 1 - 24 of 24) sorted by relevance

/external/freetype/include/freetype/internal/
H A Dftpic.h45 void* sfnt; member in struct:FT_PIC_Container_
H A Dtttypes.h1224 /* sfnt :: A pointer to the SFNT service. */
1421 void* sfnt; member in struct:TT_FaceRec_
/external/pdfium/third_party/freetype/include/freetype/internal/
H A Dftpic.h45 void* sfnt; member in struct:FT_PIC_Container_
H A Dtttypes.h1160 /* sfnt :: A pointer to the SFNT service. */
1288 void* sfnt; member in struct:TT_FaceRec_
/external/freetype/src/sfnt/
H A Dttload.c163 /* no table is defined in directory, it is not sfnt-wrapped */
170 check_table_dir( SFNT_Header sfnt, argument
177 FT_ULong offset = sfnt->offset + 12;
196 for ( nn = 0; nn < sfnt->num_tables; nn++ )
206 nn, nn == 1 ? "" : "s", sfnt->num_tables ));
207 sfnt->num_tables = nn;
326 /* sfnt :: The SFNT header. */
338 SFNT_HeaderRec sfnt; local
361 sfnt.offset = FT_STREAM_POS();
363 if ( FT_READ_ULONG( sfnt
[all...]
H A Dsfobjs.c129 /* documentation is in sfnt.h */
409 FT_Byte* sfnt = NULL; local
467 if ( FT_ALLOC( sfnt, 12 + woff.num_tables * 16UL ) ||
471 sfnt_header = sfnt;
473 /* Write sfnt header. */
497 /* While the entries in the sfnt header must be sorted by the */
627 FT_ERROR(( "woff_font_open: invalid `sfnt' table structure\n" ));
633 if ( FT_REALLOC( sfnt,
638 sfnt_header = sfnt + 12;
661 ft_memcpy( sfnt
860 SFNT_Service sfnt; local
1099 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
1635 SFNT_Service sfnt; local
[all...]
/external/freetype/src/truetype/
H A Dttdriver.c206 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
212 if ( sfnt )
213 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
311 SFNT_Service sfnt = (SFNT_Service)ttface->sfnt; local
315 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
339 SFNT_Service sfnt = (SFNT_Service)ttface->sfnt; local
343 error = sfnt
565 SFNT_Service sfnt; local
[all...]
H A Dttobjs.c177 /* XXX: This function should be in the `sfnt' module. */
208 /* XXX: This function should be in the `sfnt' module. */
427 /* sfnt tables (`cvt', `fpgm', and `prep'). */
518 SFNT_Service sfnt; local
526 sfnt = (SFNT_Service)FT_Get_Module_Interface( library, "sfnt" );
527 if ( !sfnt )
529 FT_ERROR(( "tt_face_init: cannot access `sfnt' module\n" ));
540 error = sfnt->init_face( stream, face, face_index, num_params, params );
568 error = sfnt
704 SFNT_Service sfnt; local
[all...]
H A Dttgload.c79 ( (SFNT_Service)face->sfnt )->get_metrics( face, 0, idx, lsb, aw );
99 ( (SFNT_Service)face->sfnt )->get_metrics( face, 1, idx, tsb, ah );
2213 SFNT_Service sfnt; local
2220 sfnt = (SFNT_Service)face->sfnt;
2223 error = sfnt->load_sbit_image( face,
/external/pdfium/third_party/freetype/src/cff/
H A Dcffdrivr.c106 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
112 if ( sfnt )
113 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
222 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface,
244 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface,
441 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
447 if ( sfnt )
450 FT_Module sfnt_module = FT_Get_Module( library, "sfnt" );
498 FT_Module sfnt = FT_Get_Module( library, "sfnt" ); local
824 FT_Module sfnt; local
[all...]
H A Dcffobjs.c279 SFNT_Service sfnt = (SFNT_Service)cffface->sfnt; local
283 if ( sfnt->set_sbit_strike( cffface, req, &strike_index ) )
490 SFNT_Service sfnt; local
498 sfnt = (SFNT_Service)FT_Get_Module_Interface(
499 library, "sfnt" );
500 if ( !sfnt )
502 FT_ERROR(( "cff_face_init: cannot access `sfnt' module\n" ));
519 error = sfnt->init_face( stream, face, face_index, num_params, params );
543 error = sfnt
1017 SFNT_Service sfnt; local
[all...]
H A Dcffgload.c2663 SFNT_Service sfnt = (SFNT_Service)cff_face->sfnt; local
2668 sfnt->load_eblc &&
2674 error = sfnt->load_sbit_image( face,
2718 (void)( (SFNT_Service)face->sfnt )->get_metrics( face, 0,
2731 (void)( (SFNT_Service)face->sfnt )->get_metrics( face, 1,
2961 ( (SFNT_Service)face->sfnt )->get_metrics( face, 0,
2988 ( (SFNT_Service)face->sfnt )->get_metrics( face, 1,
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttload.c163 /* no table is defined in directory, it is not sfnt-wrapped */
170 check_table_dir( SFNT_Header sfnt, argument
177 FT_ULong offset = sfnt->offset + 12;
196 for ( nn = 0; nn < sfnt->num_tables; nn++ )
206 nn, nn == 1 ? "" : "s", sfnt->num_tables ));
207 sfnt->num_tables = nn;
326 /* sfnt :: The SFNT header. */
338 SFNT_HeaderRec sfnt; local
361 sfnt.offset = FT_STREAM_POS();
363 if ( FT_READ_ULONG( sfnt
[all...]
H A Dsfobjs.c123 /* documentation is in sfnt.h */
402 FT_Byte* sfnt = NULL; local
456 if ( FT_ALLOC( sfnt, woff.totalSfntSize ) ||
460 sfnt_header = sfnt;
462 /* Write sfnt header. */
486 /* While the entries in the sfnt header must be sorted by the */
635 ft_memcpy( sfnt + table->OrigOffset,
648 sfnt + table->OrigOffset, &output_len,
673 sfnt[sfnt_offset] = '\0';
679 FT_Stream_OpenMemory( sfnt_stream, sfnt, wof
830 SFNT_Service sfnt; local
989 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
1517 SFNT_Service sfnt; local
[all...]
/external/pdfium/third_party/freetype/src/truetype/
H A Dttdriver.c176 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
182 if ( sfnt )
183 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
266 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; local
270 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
294 SFNT_Service sfnt = (SFNT_Service) ttface->sfnt; local
298 error = sfnt
473 SFNT_Service sfnt; local
[all...]
H A Dttobjs.c181 /* XXX: This function should be in the `sfnt' module. */
212 /* XXX: This function should be in the `sfnt' module. */
426 /* sfnt tables (`cvt', `fpgm', and `prep'). */
517 SFNT_Service sfnt; local
525 sfnt = (SFNT_Service)FT_Get_Module_Interface( library, "sfnt" );
526 if ( !sfnt )
528 FT_ERROR(( "tt_face_init: cannot access `sfnt' module\n" ));
538 error = sfnt->init_face( stream, face, face_index, num_params, params );
566 error = sfnt
731 SFNT_Service sfnt; local
[all...]
H A Dttgload.c78 ( (SFNT_Service)face->sfnt )->get_metrics( face, 0, idx, lsb, aw );
98 ( (SFNT_Service)face->sfnt )->get_metrics( face, 1, idx, tsb, ah );
2091 SFNT_Service sfnt; local
2098 sfnt = (SFNT_Service)face->sfnt;
2101 error = sfnt->load_sbit_image( face,
/external/fonttools/Lib/fontTools/ttLib/
H A D__init__.py77 It we're running on a Macintosh, 'res_name_or_index' maybe an sfnt
78 resource name or an sfnt resource index number or zero. The latter
80 or a suitcase. (If it's a suitcase, only the first 'sfnt' resource
83 The 'checkChecksums' argument is used to specify how sfnt
127 from fontTools.ttLib import sfnt namespace
151 # on the mac, we deal with sfnt resources as well as flat files
155 # get the first available sfnt font.
165 self.reader = sfnt.SFNTReader(file, checkChecksums, fontNumber=fontNumber)
183 from fontTools.ttLib import sfnt namespace
207 writer = sfnt
[all...]
/external/fonttools/Tools/fontTools/ttLib/
H A D__init__.py77 It we're running on a Macintosh, 'res_name_or_index' maybe an sfnt
78 resource name or an sfnt resource index number or zero. The latter
80 or a suitcase. (If it's a suitcase, only the first 'sfnt' resource
83 The 'checkChecksums' argument is used to specify how sfnt
127 from fontTools.ttLib import sfnt namespace
151 # on the mac, we deal with sfnt resources as well as flat files
155 # get the first available sfnt font.
165 self.reader = sfnt.SFNTReader(file, checkChecksums, fontNumber=fontNumber)
183 from fontTools.ttLib import sfnt namespace
207 writer = sfnt
[all...]
/external/freetype/src/cff/
H A Dcffdrivr.c111 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
117 if ( sfnt )
118 kerning->x = sfnt->get_kerning( face, left_glyph, right_glyph );
234 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface,
263 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface,
318 FT_Module sfnt_module = FT_Get_Module( library, "sfnt" );
388 FT_Module sfnt_module = FT_Get_Module( library, "sfnt" );
518 SFNT_Service sfnt = (SFNT_Service)face->sfnt; local
574 FT_Module sfnt = FT_Get_Module( library, "sfnt" ); local
1139 FT_Module sfnt; local
[all...]
H A Dcffobjs.c279 SFNT_Service sfnt = (SFNT_Service)cffface->sfnt; local
283 if ( sfnt->set_sbit_strike( cffface, req, &strike_index ) )
490 SFNT_Service sfnt; local
499 sfnt = (SFNT_Service)FT_Get_Module_Interface(
500 library, "sfnt" );
501 if ( !sfnt )
503 FT_ERROR(( "cff_face_init: cannot access `sfnt' module\n" ));
521 error = sfnt->init_face( stream, face, face_index, num_params, params );
545 error = sfnt
1133 SFNT_Service sfnt; local
[all...]
H A Dcffgload.c2789 SFNT_Service sfnt = (SFNT_Service)cff_face->sfnt; local
2794 sfnt->load_eblc &&
2800 error = sfnt->load_sbit_image( face,
2844 (void)( (SFNT_Service)face->sfnt )->get_metrics( face, 0,
2857 (void)( (SFNT_Service)face->sfnt )->get_metrics( face, 1,
3089 ( (SFNT_Service)face->sfnt )->get_metrics( face, 0,
3116 ( (SFNT_Service)face->sfnt )->get_metrics( face, 1,
/external/freetype/src/base/
H A Dftmac.c31 sfnt fonts, bitmap glyph data for each size is stored in each `NFNT'
32 resources instead of the `bdat' table in the sfnt resource. Therefore,
56 - If there is a TrueType font (an `sfnt' resource), read it into memory,
63 ignore errors from the `LWFN' and fallback to the `sfnt' if both are
737 Handle sfnt = NULL; local
745 sfnt = GetResource( TTAG_sfnt, sfnt_id );
746 if ( !sfnt )
749 sfnt_size = (FT_ULong)GetHandleSize( sfnt );
757 ReleaseResource( sfnt );
761 ft_memcpy( sfnt_data, *sfnt, sfnt_siz
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftmac.c31 sfnt fonts, bitmap glyph data for each size is stored in each `NFNT'
32 resources instead of the `bdat' table in the sfnt resource. Therefore,
56 - If there is a TrueType font (an `sfnt' resource), read it into memory,
63 ignore errors from the `LWFN' and fallback to the `sfnt' if both are
737 Handle sfnt = NULL; local
745 sfnt = GetResource( TTAG_sfnt, sfnt_id );
746 if ( sfnt == NULL )
749 sfnt_size = (FT_ULong)GetHandleSize( sfnt );
757 ReleaseResource( sfnt );
761 ft_memcpy( sfnt_data, *sfnt, sfnt_siz
[all...]

Completed in 556 milliseconds