/external/freetype/include/freetype/ |
D | tttables.h | 77 FT_Short xMin; 78 FT_Short yMin; 79 FT_Short xMax; 80 FT_Short yMax; 85 FT_Short Font_Direction; 86 FT_Short Index_To_Loc_Format; 87 FT_Short Glyph_Data_Format; 183 FT_Short Ascender; 184 FT_Short Descender; 185 FT_Short Line_Gap; [all …]
|
D | t1tables.h | 78 FT_Short underline_position; 128 FT_Short blue_values[14]; 129 FT_Short other_blues[10]; 131 FT_Short family_blues [14]; 132 FT_Short family_other_blues[10]; 146 FT_Short snap_widths [13]; /* including std width */ 147 FT_Short snap_heights[13]; /* including std height */ 154 FT_Short min_feature[2];
|
D | freetype.h | 290 FT_Short height; 291 FT_Short width; 932 FT_Short ascender; 933 FT_Short descender; 934 FT_Short height; 936 FT_Short max_advance_width; 937 FT_Short max_advance_height; 939 FT_Short underline_position; 940 FT_Short underline_thickness;
|
D | fttypes.h | 194 typedef signed short FT_Short; typedef
|
/external/freetype/src/autofit/ |
D | afhints.h | 112 FT_Short fx, fy; /* original, unscaled position (font units) */ 126 FT_Short pos; /* position of segment */ 127 FT_Short min_coord; /* minimum coordinate of segment */ 128 FT_Short max_coord; /* maximum coordinate of segment */ 129 FT_Short height; /* the hinted segment height */ 149 FT_Short fpos; /* original, unscaled position (font units) */ 160 FT_Short num_linked;
|
D | aflatin.c | 708 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 ); in af_latin_hints_compute_segments() 725 segment->min_coord = (FT_Short)min_pos; in af_latin_hints_compute_segments() 726 segment->max_coord = (FT_Short)max_pos; in af_latin_hints_compute_segments() 727 segment->height = (FT_Short)( segment->max_coord - in af_latin_hints_compute_segments() 794 segment->height = (FT_Short)( segment->height + in af_latin_hints_compute_segments() 799 segment->height = (FT_Short)( segment->height + in af_latin_hints_compute_segments() 809 segment->height = (FT_Short)( segment->height + in af_latin_hints_compute_segments() 814 segment->height = (FT_Short)( segment->height + in af_latin_hints_compute_segments()
|
D | aflatin2.c | 733 segment->pos = (FT_Short)(( min_u + max_u ) >> 1); in af_latin2_hints_compute_segments() 734 segment->min_coord = (FT_Short) min_v; in af_latin2_hints_compute_segments() 735 segment->max_coord = (FT_Short) max_v; in af_latin2_hints_compute_segments() 736 segment->height = (FT_Short)(max_v - min_v); in af_latin2_hints_compute_segments() 805 segment->height = (FT_Short)( segment->height + in af_latin2_hints_compute_segments() 810 segment->height = (FT_Short)( segment->height + in af_latin2_hints_compute_segments() 817 segment->height = (FT_Short)( segment->height + in af_latin2_hints_compute_segments() 822 segment->height = (FT_Short)( segment->height + in af_latin2_hints_compute_segments()
|
/external/freetype/src/cff/ |
D | cffobjs.c | 118 priv->blue_values[n] = (FT_Short)cpriv->blue_values[n]; in cff_make_private_dict() 122 priv->other_blues[n] = (FT_Short)cpriv->other_blues[n]; in cff_make_private_dict() 126 priv->family_blues[n] = (FT_Short)cpriv->family_blues[n]; in cff_make_private_dict() 130 priv->family_other_blues[n] = (FT_Short)cpriv->family_other_blues[n]; in cff_make_private_dict() 141 priv->snap_widths[n] = (FT_Short)cpriv->snap_widths[n]; in cff_make_private_dict() 145 priv->snap_heights[n] = (FT_Short)cpriv->snap_heights[n]; in cff_make_private_dict() 665 cffface->ascender = (FT_Short)( cffface->bbox.yMax ); in cff_face_init() 666 cffface->descender = (FT_Short)( cffface->bbox.yMin ); in cff_face_init() 668 cffface->height = (FT_Short)( ( cffface->units_per_EM * 12 ) / 10 ); in cff_face_init() 670 cffface->height = (FT_Short)( cffface->ascender - cffface->descender ); in cff_face_init() [all …]
|
D | cffparse.c | 96 val = (FT_Short)( ( (FT_Int)p[0] << 8 ) | p[1] ); in cff_parse_integer() 758 *(FT_Short*)q = (FT_Short)val; in cff_parser_run() 795 *(FT_Short*)q = (FT_Short)val; in cff_parser_run()
|
D | cffdrivr.c | 367 font_info->underline_position = (FT_Short)dict->underline_position; in cff_ps_get_font_info() 368 font_info->underline_thickness = (FT_Short)dict->underline_thickness; in cff_ps_get_font_info()
|
/external/freetype/include/freetype/internal/ |
D | tttypes.h | 157 FT_Short bearing; 171 typedef FT_Short TT_ShortMetrics; 360 FT_Short num_records; 1357 FT_Short* cvt; 1471 FT_Short n_contours; /* number of contours */ 1502 FT_Short n_contours;
|
D | ftstream.h | 295 #define FT_GET_SHORT() FT_GET_MACRO( FT_Stream_GetShort, FT_Short ) 303 #define FT_GET_SHORT_LE() FT_GET_MACRO( FT_Stream_GetShortLE, FT_Short ) 315 #define FT_READ_SHORT( var ) FT_READ_MACRO( FT_Stream_ReadShort, FT_Short, var ) 322 #define FT_READ_SHORT_LE( var ) FT_READ_MACRO( FT_Stream_ReadShortLE, FT_Short, var ) 435 FT_BASE( FT_Short ) 447 FT_BASE( FT_Short ) 461 FT_BASE( FT_Short ) 476 FT_BASE( FT_Short )
|
/external/freetype/src/truetype/ |
D | ttgload.h | 41 FT_Short* lsb, 48 FT_Short* tsb,
|
D | ttobjs.h | 98 FT_Short delta_base; 99 FT_Short delta_shift; 124 FT_Short maxContours,
|
D | ttgload.c | 76 FT_Short* lsb, in TT_Get_HMetrics() 103 FT_Short* tsb, in TT_Get_VMetrics() 253 FT_Short *cont, *cont_limit, prev_cont; in TT_Load_Simple_Glyph() 449 outline->n_contours = (FT_Short) n_contours; in TT_Load_Simple_Glyph() 601 zone->n_contours = (FT_Short) ( load->outline.n_contours - in tt_prepare_zone() 1144 FT_Short left_bearing = 0, top_bearing = 0; in load_truetype_glyph() 1177 left_bearing = (FT_Short)metrics.bearing_x; in load_truetype_glyph() 1191 top_bearing = (FT_Short)metrics.bearing_y; in load_truetype_glyph() 1595 top = (FT_Short)FT_DivFix( loader->pp3.y - bbox.yMax, in compute_glyph_metrics() 1617 height = (FT_Short)FT_DivFix( bbox.yMax - bbox.yMin, in compute_glyph_metrics()
|
D | ttinterp.c | 1466 static FT_Short 1471 return (FT_Short)( ( CUR.code[CUR.IP - 2] << 8 ) + in GetShortIns() 2580 FT_Short A, B; \ 2583 A = (FT_Short)( CUR.opcode & 1 ) << 14; \ 2584 B = A ^ (FT_Short)0x4000; \ 2600 FT_Short A, B; \ 2603 A = (FT_Short)( CUR.opcode & 1 ) << 14; \ 2604 B = A ^ (FT_Short)0x4000; \ 2620 FT_Short A, B; \ 2623 A = (FT_Short)( CUR.opcode & 1 ) << 14; \ [all …]
|
D | ttdriver.c | 147 FT_Short tsb; in tt_get_advances() 159 FT_Short lsb; in tt_get_advances()
|
D | ttgxvar.c | 206 static FT_Short* 210 FT_Short *deltas; in ft_var_readpackeddeltas() 1128 FT_Short* deltas; in tt_face_vary_cvt() 1254 face->cvt[j] = (FT_Short)( face->cvt[j] + in tt_face_vary_cvt() 1264 face->cvt[pindex] = (FT_Short)( face->cvt[pindex] + in tt_face_vary_cvt() 1336 FT_Short *deltas_x, *deltas_y; in TT_Vary_Get_Glyph_Deltas()
|
D | ttpload.c | 288 FT_Short* cur = face->cvt; in tt_face_load_cvt() 289 FT_Short* limit = cur + face->cvt_size; in tt_face_load_cvt()
|
/external/freetype/src/base/ |
D | ftstream.c | 341 FT_BASE_DEF( FT_Short ) 345 FT_Short result; in FT_Stream_GetShort() 360 FT_BASE_DEF( FT_Short ) 364 FT_Short result; in FT_Stream_GetShortLE() 469 FT_BASE_DEF( FT_Short ) 475 FT_Short result = 0; in FT_Stream_ReadShort() 516 FT_BASE_DEF( FT_Short ) 522 FT_Short result = 0; in FT_Stream_ReadShortLE()
|
D | ftoutln.c | 313 anoutline->n_contours = (FT_Short)numContours; in FT_Outline_New_Internal() 731 FT_Short c, 784 FT_Short i; 815 FT_Short i;
|
/external/freetype/src/sfnt/ |
D | sfobjs.c | 886 FT_Short avgwidth = face->os2.xAvgCharWidth; in sfnt_load_face() 908 bsize->height = (FT_Short)( metrics.height >> 6 ); in sfnt_load_face() 909 bsize->width = (FT_Short)( in sfnt_load_face() 981 root->height = (FT_Short)( root->ascender - root->descender + in sfnt_load_face() 988 root->height = (FT_Short)( ( root->height * 115 + 50 ) / 100 ); in sfnt_load_face() 1009 root->max_advance_height = (FT_Short)( face->vertical_info in sfnt_load_face()
|
D | ttmtx.c | 212 FT_Short val = (*shorts)[num_shorts_checked - 1]; in tt_face_load_hmtx() 350 FT_Short *abearing, in tt_face_get_metrics() 429 FT_Short* abearing, in tt_face_get_metrics()
|
D | ttmtx.h | 47 FT_Short* abearing,
|
/external/freetype/src/pshinter/ |
D | pshglob.c | 142 FT_Short* read, in psh_blues_set_zones_0() 236 FT_Short* blues, in psh_blues_set_zones() 238 FT_Short* other_blues, in psh_blues_set_zones() 634 FT_Short* read; in psh_globals_new()
|