HomeSort by relevance Sort by last modified time
    Searched refs:FT_Short (Results 1 - 25 of 37) sorted by null

1 2

  /external/freetype/include/freetype/
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...]
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];
fttypes.h 60 /* FT_Short */
189 /* FT_Short */
194 typedef signed short FT_Short;
    [all...]
freetype.h 295 FT_Short height;
296 FT_Short width;
    [all...]
ftcache.h     [all...]
  /external/freetype/src/truetype/
ttgload.h 41 FT_Short* lsb,
48 FT_Short* tsb,
ttobjs.h 98 FT_Short delta_base;
99 FT_Short delta_shift;
124 FT_Short maxContours,
ttdriver.c 148 FT_Short tsb;
160 FT_Short lsb;
ttinterp.h 175 FT_Short maxContours; /* record, expressed in points and */
ttgload.c 77 FT_Short* lsb,
107 FT_Short* tsb,
149 FT_Short left_bearing = 0, top_bearing = 0;
185 FT_Short left_bearing = 0, top_bearing = 0;
209 left_bearing = (FT_Short)metrics.bearing_x;
225 top_bearing = (FT_Short)metrics.bearing_y;
365 FT_Short *cont, *cont_limit, prev_cont;
561 outline->n_contours = (FT_Short) n_contours;
713 zone->n_contours = (FT_Short) ( load->outline.n_contours -
    [all...]
ttpload.c 286 FT_Short* cur = face->cvt;
287 FT_Short* limit = cur + face->cvt_size;
ttgxvar.c 204 /* An array of FT_Short containing the deltas for the affected */
209 static FT_Short*
213 FT_Short *deltas = NULL;
    [all...]
ttinterp.c     [all...]
  /external/freetype/src/sfnt/
ttmtx.h 47 FT_Short* abearing,
ttmtx.c 214 FT_Short val = (*shorts)[num_shorts_checked - 1];
352 FT_Short *abearing,
431 FT_Short* abearing,
sfobjs.c 905 FT_Short avgwidth = face->os2.xAvgCharWidth;
927 bsize->height = (FT_Short)( metrics.height >> 6 );
928 bsize->width = (FT_Short)(
    [all...]
  /external/freetype/src/autofit/
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;
aflatin.c 760 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 );
777 segment->min_coord = (FT_Short)min_pos;
778 segment->max_coord = (FT_Short)max_pos;
779 segment->height = (FT_Short)( segment->max_coord -
846 segment->height = (FT_Short)( segment->height +
851 segment->height = (FT_Short)( segment->height +
861 segment->height = (FT_Short)( segment->height +
866 segment->height = (FT_Short)( segment->height +
    [all...]
  /external/freetype/include/freetype/internal/
tttypes.h 157 FT_Short bearing;
171 typedef FT_Short TT_ShortMetrics;
360 FT_Short num_records;
    [all...]
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/base/
ftstream.c 357 FT_BASE_DEF( FT_Short )
361 FT_Short result;
376 FT_BASE_DEF( FT_Short )
380 FT_Short result;
486 FT_BASE_DEF( FT_Short )
492 FT_Short result = 0;
533 FT_BASE_DEF( FT_Short )
539 FT_Short result = 0;
  /external/freetype/src/cff/
cffobjs.c 118 priv->blue_values[n] = (FT_Short)cpriv->blue_values[n];
122 priv->other_blues[n] = (FT_Short)cpriv->other_blues[n];
126 priv->family_blues[n] = (FT_Short)cpriv->family_blues[n];
130 priv->family_other_blues[n] = (FT_Short)cpriv->family_other_blues[n];
141 priv->snap_widths[n] = (FT_Short)cpriv->snap_widths[n];
145 priv->snap_heights[n] = (FT_Short)cpriv->snap_heights[n];
693 cffface->ascender = (FT_Short)( cffface->bbox.yMax );
694 cffface->descender = (FT_Short)( cffface->bbox.yMin );
696 cffface->height = (FT_Short)( ( cffface->units_per_EM * 12 ) / 10 );
698 cffface->height = (FT_Short)( cffface->ascender - cffface->descender )
    [all...]
cffparse.c 70 val = (FT_Short)( ( (FT_Int)p[0] << 8 ) | p[1] );
834 *(FT_Short*)q = (FT_Short)val;
871 *(FT_Short*)q = (FT_Short)val;
  /external/freetype/src/psaux/
psobjs.h 127 FT_Short* coords );
  /external/freetype/src/pshinter/
pshglob.c 142 FT_Short* read,
236 FT_Short* blues,
238 FT_Short* other_blues,
634 FT_Short* read;

Completed in 503 milliseconds

1 2