| /xsrc/external/mit/freetype/dist/src/base/ |
| ftfstype.c | 29 TT_OS2* os2; local 53 if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, FT_SFNT_OS2 ) ) != NULL && 54 os2->version != 0xFFFFU ) 55 return os2->fsType;
|
| /xsrc/external/mit/libXfont/dist/src/FreeType/ |
| ftenc.c | 135 TT_OS2 *os2; local 136 os2 = FT_Get_Sfnt_Table(face, ft_sfnt_os2); 137 if(os2) 138 tm->base = os2->usFirstCharIndex - 0x20;
|
| ftfuncs.c | 1576 TT_OS2 *os2; local 1591 os2 = FT_Get_Sfnt_Table(face->face, ft_sfnt_os2); 1600 os2 = NULL; 1620 ( (font_properties && os2) ? 6 : 0 ) + 1796 if( font_properties && os2 ) { 1799 TRANSFORM_FUNITS_Y(os2->ySubscriptYSize); 1803 TRANSFORM_FUNITS_X(os2->ySubscriptXOffset); 1807 TRANSFORM_FUNITS_Y(os2->ySubscriptYOffset); 1811 TRANSFORM_FUNITS_Y(os2->ySuperscriptYSize); 1815 TRANSFORM_FUNITS_X(os2->ySuperscriptXOffset) [all...] |
| /xsrc/external/mit/libXfont2/dist/src/FreeType/ |
| ftenc.c | 134 TT_OS2 *os2; local 135 os2 = FT_Get_Sfnt_Table(face, ft_sfnt_os2); 136 if(os2) 137 tm->base = os2->usFirstCharIndex - 0x20;
|
| ftfuncs.c | 1578 TT_OS2 *os2; local 1593 os2 = FT_Get_Sfnt_Table(face->face, ft_sfnt_os2); 1602 os2 = NULL; 1622 ( (font_properties && os2) ? 6 : 0 ) + 1798 if( font_properties && os2 ) { 1801 TRANSFORM_FUNITS_Y(os2->ySubscriptYSize); 1805 TRANSFORM_FUNITS_X(os2->ySubscriptXOffset); 1809 TRANSFORM_FUNITS_Y(os2->ySubscriptYOffset); 1813 TRANSFORM_FUNITS_Y(os2->ySuperscriptYSize); 1817 TRANSFORM_FUNITS_X(os2->ySuperscriptXOffset) [all...] |
| /xsrc/external/mit/freetype/dist/src/sfnt/ |
| ttload.c | 1107 * Loads the OS2 table. 1124 TT_OS2* os2; local 1216 os2 = &face->os2; 1218 if ( FT_STREAM_READ_FIELDS( os2_fields, os2 ) ) 1221 os2->ulCodePageRange1 = 0; 1222 os2->ulCodePageRange2 = 0; 1223 os2->sxHeight = 0; 1224 os2->sCapHeight = 0; 1225 os2->usDefaultChar = 0 [all...] |
| /xsrc/external/mit/mkfontscale/dist/ |
| mkfontscale.c | 541 TT_OS2 *os2; local 557 os2 = FT_Get_Sfnt_Table(face, ft_sfnt_os2); 578 if (os2 && os2->version != 0xFFFF) { 580 weight = os2Weight(os2->usWeightClass); 582 sWidth = os2Width(os2->usWidthClass); 584 foundry = vendor_foundry(os2->achVendID); 586 slant = os2->fsSelection & 1 ? "i" : "r";
|
| /xsrc/external/mit/fontconfig/dist/src/ |
| fcfreetype.c | 1234 TT_OS2 *os2; local 1407 os2 = (TT_OS2 *) FT_Get_Sfnt_Table (face, FT_SFNT_OS2); 1417 if (os2 && os2->version >= 0x0001 && os2->version != 0xffff) 1419 if (os2->achVendID[0] != 0) 1421 foundry_ = (FcChar8 *) malloc (sizeof (os2->achVendID) + 1); 1422 memcpy ((void *)foundry_, os2->achVendID, sizeof (os2->achVendID)); 1423 foundry_[sizeof (os2->achVendID)] = 0 [all...] |
| /xsrc/external/mit/freetype/dist/include/freetype/internal/ |
| tttypes.h | 1206 * os2 :: 1483 TT_OS2 os2; /* TrueType OS/2 table */ member in struct:TT_FaceRec_
|