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

1 2 3 4

  /external/freetype/include/freetype/internal/
ftrfork.h 47 FT_Long offset;
58 FT_Long *result_offset );
139 FT_Long* offsets,
177 FT_Long rfork_offset,
178 FT_Long *map_offset,
179 FT_Long *rdata_pos );
234 FT_Long map_offset,
235 FT_Long rdata_pos,
236 FT_Long tag,
238 FT_Long **offsets
    [all...]
ftmemory.h 119 FT_Long size,
124 FT_Long size,
129 FT_Long item_size,
130 FT_Long cur_count,
131 FT_Long new_count,
137 FT_Long item_size,
138 FT_Long cur_count,
139 FT_Long new_count,
153 (FT_Long)(size), \
168 (FT_Long)(cursz),
    [all...]
ftcalc.h 275 FT_BASE( FT_Long )
276 FT_MulDiv_No_Round( FT_Long a,
277 FT_Long b,
278 FT_Long c );
292 FT_Long scaling );
317 FT_Long scaling );
447 #define INT_TO_F26DOT6( x ) ( (FT_Long)(x) * 64 ) /* << 6 */
448 #define INT_TO_F2DOT14( x ) ( (FT_Long)(x) * 16384 ) /* << 14 */
449 #define INT_TO_FIXED( x ) ( (FT_Long)(x) * 65536 ) /* << 16 */
450 #define F2DOT14_TO_FIXED( x ) ( (FT_Long)(x) * 4 ) /* << 2 *
    [all...]
  /external/freetype/src/raster/
ftmisc.h 45 typedef signed long FT_Long;
98 static FT_Long
99 FT_MulDiv( FT_Long a,
100 FT_Long b,
101 FT_Long c )
104 FT_Long d;
112 d = (FT_Long)( c > 0 ? ( (FT_Int64)a * b + ( c >> 1 ) ) / c
119 static FT_Long
120 FT_MulDiv_No_Round( FT_Long a,
121 FT_Long b
    [all...]
  /external/freetype/include/freetype/
ftmac.h 107 FT_Long face_index,
140 FT_Long* face_index )
171 FT_Long* face_index )
207 FT_Long* face_index )
245 FT_Long face_index,
284 FT_Long face_index,
ftincrem.h 118 FT_Long bearing_x;
119 FT_Long bearing_y;
120 FT_Long advance;
121 FT_Long advance_v; /* since 2.3.12 */
ftmm.h 79 FT_Long minimum;
80 FT_Long maximum;
385 FT_Long* coords );
  /external/freetype/src/psaux/
psconv.h 29 FT_LOCAL( FT_Long )
32 FT_Long base );
35 FT_LOCAL( FT_Long )
42 FT_Long power_ten );
  /external/freetype/src/autofit/
afshaper.h 62 FT_Long* x_advance,
63 FT_Long* y_offset );
  /external/freetype/src/base/
ftbase.h 42 FT_Long face_index,
54 FT_Long face_index,
ftrfork.c 53 FT_Long rfork_offset,
54 FT_Long *map_offset,
55 FT_Long *rdata_pos )
59 FT_Long map_pos, map_len, rdata_len;
61 FT_Long type_list;
187 FT_Long map_offset,
188 FT_Long rdata_pos,
189 FT_Long tag,
191 FT_Long **offsets,
192 FT_Long *count
    [all...]
ftdbgmem.c 62 FT_Long cur_blocks; /* current number of allocated blocks */
63 FT_Long max_blocks; /* max. number of allocated blocks */
64 FT_Long all_blocks; /* total number of blocks allocated */
66 FT_Long cur_size; /* current cumulative allocated size */
67 FT_Long max_size; /* maximum cumulative allocated size */
68 FT_Long all_size; /* total cumulative allocated size */
70 FT_Long cur_max; /* current maximum allocated size */
94 FT_Long size; /* < 0 if the block was freed */
100 FT_Long free_line_no;
114 FT_Long size
    [all...]
ftcalc.c 173 FT_EXPORT_DEF( FT_Long )
174 FT_MulDiv( FT_Long a_,
175 FT_Long b_,
176 FT_Long c_ )
180 FT_Long d_;
194 d_ = (FT_Long)d;
202 FT_BASE_DEF( FT_Long )
203 FT_MulDiv_No_Round( FT_Long a_,
204 FT_Long b_,
205 FT_Long c_
    [all...]
ftutil.c 51 FT_Long size,
67 FT_Long size,
93 FT_Long item_size,
94 FT_Long cur_count,
95 FT_Long new_count,
115 FT_Long item_size,
116 FT_Long cur_count,
117 FT_Long new_count,
153 FT_Long cur_size = cur_count * item_size;
154 FT_Long new_size = new_count * item_size
    [all...]
  /external/freetype/include/freetype/internal/services/
svttcmap.h 61 FT_Long format;
svpsinfo.h 47 typedef FT_Long
52 FT_Long value_len );
svmm.h 49 FT_Long* coords );
63 FT_Long* coords );
77 FT_Long* coords );
svsfnt.h 42 FT_Long offset,
  /external/freetype/src/truetype/
ttinterp.h 71 typedef FT_Long
94 FT_Long Caller_IP;
95 FT_Long Cur_Count;
159 FT_Long top; /* top of exec. stack */
161 FT_Long stackSize; /* size of exec. stack */
162 FT_Long* stack; /* current exec. stack */
164 FT_Long args;
165 FT_Long new_top; /* new top after exec. */
173 FT_Long pointSize; /* in 26.6 format */
181 FT_Long IP; /* current instruction pointer *
    [all...]
ttobjs.h 75 FT_Long loop;
148 FT_Long size;
162 FT_Long start; /* where does it start? */
163 FT_Long end; /* where does it end? */
254 FT_Long x_ratio;
255 FT_Long y_ratio;
258 FT_Long ratio; /* current ratio */
290 FT_Long point_size; /* for the `MPS' bytecode instruction */
308 FT_Long* cvt;
311 FT_Long* storage; /* the instance *
    [all...]
  /external/freetype/src/type42/
t42types.h 43 FT_Long ttf_size;
t42parse.h 35 FT_Long base_len;
72 FT_Long size );
  /external/freetype/src/pfr/
pfrdrivr.c 47 (FT_Long)phys->outline_resolution,
48 (FT_Long)phys->metrics_resolution );
52 (FT_Long)phys->outline_resolution,
53 (FT_Long)phys->metrics_resolution );
123 (FT_Long)phys->metrics_resolution );
126 (FT_Long)phys->metrics_resolution );
  /external/freetype/src/bdf/
bdfdrivr.h 42 FT_Long enc;
  /external/freetype/src/pcf/
pcf.h 60 FT_Long name;
62 FT_Long value;
75 FT_Long l;
116 FT_Long fontAscent;
117 FT_Long fontDescent;
118 FT_Long maxOverlap;
244 FT_Long face_index );

Completed in 1488 milliseconds

1 2 3 4