ReactOS 0.4.16-dev-2332-g4cba65d
ftbbox.c File Reference
Include dependency graph for ftbbox.c:

Go to the source code of this file.

Classes

struct  TBBox_Rec_
 

Macros

#define FT_UPDATE_BBOX(p, bbox)
 
#define CHECK_X(p, bbox)    ( p->x < bbox.xMin || p->x > bbox.xMax )
 
#define CHECK_Y(p, bbox)    ( p->y < bbox.yMin || p->y > bbox.yMax )
 

Typedefs

typedef struct TBBox_Rec_ TBBox_Rec
 

Functions

static int BBox_Move_To (FT_Vector *to, TBBox_Rec *user)
 
static int BBox_Line_To (FT_Vector *to, TBBox_Rec *user)
 
static void BBox_Conic_Check (FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos *min, FT_Pos *max)
 
static int BBox_Conic_To (FT_Vector *control, FT_Vector *to, TBBox_Rec *user)
 
static FT_Pos cubic_peak (FT_Pos q1, FT_Pos q2, FT_Pos q3, FT_Pos q4)
 
static void BBox_Cubic_Check (FT_Pos p1, FT_Pos p2, FT_Pos p3, FT_Pos p4, FT_Pos *min, FT_Pos *max)
 
static int BBox_Cubic_To (FT_Vector *control1, FT_Vector *control2, FT_Vector *to, TBBox_Rec *user)
 
 FT_DEFINE_OUTLINE_FUNCS (bbox_interface,(FT_Outline_MoveTo_Func) BBox_Move_To,(FT_Outline_LineTo_Func) BBox_Line_To,(FT_Outline_ConicTo_Func) BBox_Conic_To,(FT_Outline_CubicTo_Func) BBox_Cubic_To, 0, 0) FT_Outline_Get_BBox(FT_Outline *outline
 
 if (!abbox) return FT_THROW(Invalid_Argument)
 
 if (outline->n_points==0||outline->n_contours<=0)
 
 for (n=0;n< outline->n_points;n++)
 
 if (cbox.xMin< bbox.xMin||cbox.xMax > bbox.xMax||cbox.yMin< bbox.yMin||cbox.yMax > bbox.yMax)
 

Variables

FT_BBoxabbox
 
FT_BBox bbox
 
FT_Vectorvec = outline->points
 
FT_UShort n
 
return FT_Err_Ok
 

Macro Definition Documentation

◆ CHECK_X

#define CHECK_X (   p,
  bbox 
)     ( p->x < bbox.xMin || p->x > bbox.xMax )

Definition at line 56 of file ftbbox.c.

◆ CHECK_Y

#define CHECK_Y (   p,
  bbox 
)     ( p->y < bbox.yMin || p->y > bbox.yMax )

Definition at line 59 of file ftbbox.c.

◆ FT_UPDATE_BBOX

#define FT_UPDATE_BBOX (   p,
  bbox 
)
Value:
FT_BEGIN_STMNT \
if ( p->x < bbox.xMin ) \
bbox.xMin = p->x; \
if ( p->x > bbox.xMax ) \
bbox.xMax = p->x; \
if ( p->y < bbox.yMin ) \
bbox.yMin = p->y; \
if ( p->y > bbox.yMax ) \
bbox.yMax = p->y; \
#define FT_END_STMNT
FT_BBox bbox
Definition: ftbbox.c:467
GLfloat GLfloat p
Definition: glext.h:8902
FT_Pos xMin
Definition: ftimage.h:120
FT_Pos yMax
Definition: ftimage.h:121
FT_Pos yMin
Definition: ftimage.h:120
FT_Pos xMax
Definition: ftimage.h:121

Definition at line 44 of file ftbbox.c.

Typedef Documentation

◆ TBBox_Rec

Function Documentation

◆ BBox_Conic_Check()

static void BBox_Conic_Check ( FT_Pos  y1,
FT_Pos  y2,
FT_Pos  y3,
FT_Pos min,
FT_Pos max 
)
static

Definition at line 157 of file ftbbox.c.

162 {
163 /* This function is only called when a control off-point is outside */
164 /* the bbox that contains all on-points. It finds a local extremum */
165 /* within the segment, equal to (y1*y3 - y2*y2)/(y1 - 2*y2 + y3). */
166 /* Or, offsetting from y2, we get */
167
168 y1 -= y2;
169 y3 -= y2;
170 y2 += FT_MulDiv( y1, y3, y1 + y3 );
171
172 if ( y2 < *min )
173 *min = y2;
174 if ( y2 > *max )
175 *max = y2;
176 }
FT_MulDiv(FT_Long a, FT_Long b, FT_Long c)
Definition: ftcalc.c:415
static float int float int float int float y3
Definition: server.c:79
#define min(a, b)
Definition: monoChain.cc:55
#define max(a, b)
Definition: svc.c:63
_In_ CLIPOBJ _In_ BRUSHOBJ _In_ LONG _In_ LONG y1
Definition: winddi.h:3709
_In_ CLIPOBJ _In_ BRUSHOBJ _In_ LONG _In_ LONG _In_ LONG _In_ LONG y2
Definition: winddi.h:3711

Referenced by BBox_Conic_To().

◆ BBox_Conic_To()

static int BBox_Conic_To ( FT_Vector control,
FT_Vector to,
TBBox_Rec user 
)
static

Definition at line 209 of file ftbbox.c.

212 {
213 /* in case `to' is implicit and not included in bbox yet */
214 FT_UPDATE_BBOX( to, user->bbox );
215
216 if ( CHECK_X( control, user->bbox ) )
217 BBox_Conic_Check( user->last.x,
218 control->x,
219 to->x,
220 &user->bbox.xMin,
221 &user->bbox.xMax );
222
223 if ( CHECK_Y( control, user->bbox ) )
224 BBox_Conic_Check( user->last.y,
225 control->y,
226 to->y,
227 &user->bbox.yMin,
228 &user->bbox.yMax );
229
230 user->last = *to;
231
232 return 0;
233 }
void user(int argc, const char *argv[])
Definition: cmds.c:1350
#define CHECK_X(p, bbox)
Definition: ftbbox.c:56
#define FT_UPDATE_BBOX(p, bbox)
Definition: ftbbox.c:44
#define CHECK_Y(p, bbox)
Definition: ftbbox.c:59
static void BBox_Conic_Check(FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos *min, FT_Pos *max)
Definition: ftbbox.c:157
FT_Pos x
Definition: ftimage.h:77
FT_Pos y
Definition: ftimage.h:78
Definition: dialog.c:52

◆ BBox_Cubic_Check()

static void BBox_Cubic_Check ( FT_Pos  p1,
FT_Pos  p2,
FT_Pos  p3,
FT_Pos  p4,
FT_Pos min,
FT_Pos max 
)
static

Definition at line 360 of file ftbbox.c.

366 {
367 /* This function is only called when a control off-point is outside */
368 /* the bbox that contains all on-points. So at least one of the */
369 /* conditions below holds and cubic_peak is called with at least one */
370 /* non-zero argument. */
371
372 if ( p2 > *max || p3 > *max )
373 *max += cubic_peak( p1 - *max, p2 - *max, p3 - *max, p4 - *max );
374
375 /* now flip the signs to update the minimum */
376 if ( p2 < *min || p3 < *min )
377 *min -= cubic_peak( *min - p1, *min - p2, *min - p3, *min - p4 );
378 }
static FT_Pos cubic_peak(FT_Pos q1, FT_Pos q2, FT_Pos q3, FT_Pos q4)
Definition: ftbbox.c:267

Referenced by BBox_Cubic_To().

◆ BBox_Cubic_To()

static int BBox_Cubic_To ( FT_Vector control1,
FT_Vector control2,
FT_Vector to,
TBBox_Rec user 
)
static

Definition at line 414 of file ftbbox.c.

418 {
419 /* We don't need to check `to' since it is always an on-point, */
420 /* thus within the bbox. Only segments with an off-point outside */
421 /* the bbox can possibly reach new extreme values. */
422
423 if ( CHECK_X( control1, user->bbox ) ||
424 CHECK_X( control2, user->bbox ) )
425 BBox_Cubic_Check( user->last.x,
426 control1->x,
427 control2->x,
428 to->x,
429 &user->bbox.xMin,
430 &user->bbox.xMax );
431
432 if ( CHECK_Y( control1, user->bbox ) ||
433 CHECK_Y( control2, user->bbox ) )
434 BBox_Cubic_Check( user->last.y,
435 control1->y,
436 control2->y,
437 to->y,
438 &user->bbox.yMin,
439 &user->bbox.yMax );
440
441 user->last = *to;
442
443 return 0;
444 }
static void BBox_Cubic_Check(FT_Pos p1, FT_Pos p2, FT_Pos p3, FT_Pos p4, FT_Pos *min, FT_Pos *max)
Definition: ftbbox.c:360

◆ BBox_Line_To()

static int BBox_Line_To ( FT_Vector to,
TBBox_Rec user 
)
static

Definition at line 120 of file ftbbox.c.

122 {
123 user->last = *to;
124
125 return 0;
126 }

◆ BBox_Move_To()

static int BBox_Move_To ( FT_Vector to,
TBBox_Rec user 
)
static

Definition at line 86 of file ftbbox.c.

88 {
89 FT_UPDATE_BBOX( to, user->bbox );
90
91 user->last = *to;
92
93 return 0;
94 }

◆ cubic_peak()

static FT_Pos cubic_peak ( FT_Pos  q1,
FT_Pos  q2,
FT_Pos  q3,
FT_Pos  q4 
)
static

Definition at line 267 of file ftbbox.c.

271 {
272 FT_Pos peak = 0;
274
275
276 /* This function finds a peak of a cubic segment if it is above 0 */
277 /* using iterative bisection of the segment, or returns 0. */
278 /* The fixed-point arithmetic of bisection is inherently stable */
279 /* but may loose accuracy in the two lowest bits. To compensate, */
280 /* we upscale the segment if there is room. Large values may need */
281 /* to be downscaled to avoid overflows during bisection. */
282 /* It is called with either q2 or q3 positive, which is necessary */
283 /* for the peak to exist and avoids undefined FT_MSB. */
284
285 shift = 27 - FT_MSB( (FT_UInt32)( FT_ABS( q1 ) |
286 FT_ABS( q2 ) |
287 FT_ABS( q3 ) |
288 FT_ABS( q4 ) ) );
289
290 if ( shift > 0 )
291 {
292 /* upscaling too much just wastes time */
293 if ( shift > 2 )
294 shift = 2;
295
296 q1 *= 1 << shift;
297 q2 *= 1 << shift;
298 q3 *= 1 << shift;
299 q4 *= 1 << shift;
300 }
301 else
302 {
303 q1 >>= -shift;
304 q2 >>= -shift;
305 q3 >>= -shift;
306 q4 >>= -shift;
307 }
308
309 /* for a peak to exist above 0, the cubic segment must have */
310 /* at least one of its control off-points above 0. */
311 while ( q2 > 0 || q3 > 0 )
312 {
313 /* determine which half contains the maximum and split */
314 if ( q1 + q2 > q3 + q4 ) /* first half */
315 {
316 q4 = q4 + q3;
317 q3 = q3 + q2;
318 q2 = q2 + q1;
319 q4 = q4 + q3;
320 q3 = q3 + q2;
321 q4 = ( q4 + q3 ) >> 3;
322 q3 = q3 >> 2;
323 q2 = q2 >> 1;
324 }
325 else /* second half */
326 {
327 q1 = q1 + q2;
328 q2 = q2 + q3;
329 q3 = q3 + q4;
330 q1 = q1 + q2;
331 q2 = q2 + q3;
332 q1 = ( q1 + q2 ) >> 3;
333 q2 = q2 >> 2;
334 q3 = q3 >> 1;
335 }
336
337 /* check whether either end reached the maximum */
338 if ( q1 == q2 && q1 >= q3 )
339 {
340 peak = q1;
341 break;
342 }
343 if ( q3 == q4 && q2 <= q4 )
344 {
345 peak = q4;
346 break;
347 }
348 }
349
350 if ( shift > 0 )
351 peak >>= shift;
352 else
353 peak <<= -shift;
354
355 return peak;
356 }
FT_MSB(FT_UInt32 z)
Definition: ftcalc.c:113
FT_BEGIN_HEADER typedef signed long FT_Pos
Definition: ftimage.h:57
#define FT_ABS(a)
Definition: ftobjs.h:73
signed int FT_Int
Definition: fttypes.h:220
#define shift
Definition: input.c:1755

Referenced by BBox_Cubic_Check().

◆ for()

for ( n  = 0; n < outline->n_points; n++)

Definition at line 494 of file ftbbox.c.

495 {
496 FT_UPDATE_BBOX( vec, cbox );
497
498 if ( FT_CURVE_TAG( outline->tags[n] ) == FT_CURVE_TAG_ON )
500
501 vec++;
502 }
FT_Vector * vec
Definition: ftbbox.c:469
#define FT_CURVE_TAG(flag)
Definition: ftimage.h:459
#define FT_CURVE_TAG_ON
Definition: ftimage.h:462
GLdouble n
Definition: glext.h:7729
Definition: mesh.c:5330

◆ FT_DEFINE_OUTLINE_FUNCS()

FT_DEFINE_OUTLINE_FUNCS ( bbox_interface  ,
(FT_Outline_MoveTo_Func BBox_Move_To,
(FT_Outline_LineTo_Func BBox_Line_To,
(FT_Outline_ConicTo_Func BBox_Conic_To,
(FT_Outline_CubicTo_Func BBox_Cubic_To,
,
 
)

◆ if() [1/3]

if ( abbox)

Definition at line 2998 of file btrfs.c.

2998 {
2999 ERR("out of memory\n");
3001 }
#define ERR(fmt,...)
Definition: precomp.h:57
#define STATUS_INSUFFICIENT_RESOURCES
Definition: udferr_usr.h:158

◆ if() [2/3]

if ( cbox.xMin< bbox.xMin||cbox.xMax > bbox.xMax||cbox.yMin< bbox.yMin||cbox.yMax > bbox.  yMax)

Definition at line 505 of file ftbbox.c.

507 {
508 /* the two boxes are different, now walk over the outline to */
509 /* get the Bezier arc extrema. */
510
513
514
515 user.bbox = bbox;
516
517 error = FT_Outline_Decompose( outline, &bbox_interface, &user );
518 if ( error )
519 return error;
520
521 *abbox = user.bbox;
522 }
FT_BBox * abbox
Definition: ftbbox.c:464
FT_BEGIN_HEADER FT_Outline_Decompose(FT_Outline *outline, const FT_Outline_Funcs *func_interface, void *user)
Definition: ftoutln.c:43
int FT_Error
Definition: fttypes.h:299
#define error(str)
Definition: mkdosfs.c:1605

◆ if() [3/3]

if ( outline->  n_points = = 0 || outline->n_contours <= 0)

Definition at line 480 of file ftbbox.c.

481 {
482 abbox->xMin = abbox->xMax = 0;
483 abbox->yMin = abbox->yMax = 0;
484
485 return 0;
486 }

Variable Documentation

◆ abbox

else * abbox
Initial value:
{
FT_BBox cbox = { 0x7FFFFFFFL, 0x7FFFFFFFL,
-0x7FFFFFFFL, -0x7FFFFFFFL }

Definition at line 463 of file ftbbox.c.

Referenced by if().

◆ bbox

◆ FT_Err_Ok

return FT_Err_Ok

Definition at line 526 of file ftbbox.c.

Referenced by _bdf_add_comment(), _bdf_add_property(), _bdf_list_ensure(), _bdf_list_split(), _bdf_parse_end(), _bdf_parse_glyphs(), _bdf_parse_properties(), _bdf_parse_start(), _bdf_readstream(), _bdf_set_default_spacing(), _ft_face_scale_advances(), af_autofitter_init(), af_autofitter_load_glyph(), af_axis_hints_new_edge(), af_axis_hints_new_segment(), af_dummy_hints_init(), af_face_globals_compute_style_coverage(), af_face_globals_get_metrics(), af_glyph_hints_reload(), af_latin_hints_compute_edges(), af_latin_hints_compute_segments(), af_latin_hints_init(), af_latin_metrics_init(), af_loader_embolden_glyph_in_slot(), af_loader_reset(), af_property_get(), af_property_get_face_globals(), af_property_set(), af_shaper_get_coverage(), afm_parse_kern_data(), afm_parse_kern_pairs(), afm_parse_track_kern(), afm_parser_init(), afm_parser_parse(), afm_parser_read_int(), afm_parser_skip_section(), bdf_cmap_init(), bdf_create_property(), BDF_Face_Init(), BDF_Glyph_Load(), bdf_interpret_style(), bdf_load_font(), BDF_Size_Request(), BDF_Size_Select(), cf2_arrstack_setNumElements(), cf2_checkTransform(), cf2_decoder_parse_charstrings(), cf2_font_setup(), cf2_getGlyphOutline(), cf2_getSeacComponent(), cf2_getT1SeacComponent(), cf2_hintmap_build(), cf2_interpT2CharString(), cf2_stack_init(), cff_blend_build_vector(), cff_blend_doBlend(), cff_builder_add_contour(), cff_builder_start_point(), cff_charset_compute_cids(), cff_charset_load(), cff_decoder_prepare(), cff_driver_init(), cff_encoding_load(), cff_face_init(), cff_get_advances(), cff_get_cid_from_glyph_index(), cff_get_glyph_name(), cff_get_is_cid(), cff_get_kerning(), cff_index_access_element(), cff_index_get_pointers(), cff_index_load_offsets(), cff_load_private_dict(), cff_parse_cid_ros(), cff_parse_font_bbox(), cff_parse_font_matrix(), cff_parse_maxstack(), cff_parse_multiple_master(), cff_parse_private_dict(), cff_parse_vsindex(), cff_parser_run(), cff_parser_within_limits(), cff_ps_get_font_extra(), cff_ps_get_font_info(), cff_size_init(), cff_size_request(), cff_slot_init(), cff_vstore_load(), check_table_dir(), check_type1_format(), cid_driver_init(), cid_get_cid_from_glyph_index(), cid_get_is_cid(), cid_get_ros(), cid_hex_to_binary(), cid_load_glyph(), cid_parse_dict(), cid_ps_get_font_extra(), cid_ps_get_font_info(), cid_size_init(), cid_size_request(), compositeGlyph_size(), compute_glyph_metrics(), find_unicode_charmap(), FNT_Load_Glyph(), FNT_Size_Request(), FNT_Size_Select(), FT_Activate_Size(), FT_Add_Module(), ft_bitmap_assure_buffer(), FT_Bitmap_Blend(), FT_Bitmap_Convert(), FT_Bitmap_Copy(), FT_Bitmap_Done(), FT_Bitmap_Embolden(), ft_bitmap_glyph_init(), FT_CMap_New(), FT_DEFINE_GLYPH(), FT_Done_Face(), FT_Done_FreeType(), FT_Done_Library(), FT_Done_MM_Var(), FT_Done_Size(), ft_face_get_mm_service(), ft_face_get_mvar_service(), FT_Face_Properties(), FT_Get_Advances(), FT_Get_Kerning(), FT_Get_PFR_Metrics(), FT_Get_SubGlyph_Info(), FT_Get_Track_Kerning(), FT_Get_Var_Axis_Flags(), FT_Glyph_To_Bitmap(), FT_Glyph_Transform(), FT_GlyphLoader_CheckPoints(), FT_GlyphLoader_CheckSubGlyphs(), FT_GlyphLoader_CreateExtra(), ft_glyphslot_init(), FT_GlyphSlot_Own_Bitmap(), FT_List_Iterate(), FT_Match_Size(), FT_Matrix_Invert(), ft_mem_qalloc(), ft_mem_qrealloc(), ft_mem_realloc(), FT_New_Library(), FT_Outline_Check(), FT_Outline_Copy(), FT_Outline_Decompose(), FT_Outline_Done(), FT_Outline_EmboldenXY(), ft_outline_glyph_prepare(), FT_Outline_New(), FT_Raccess_Get_DataOffsets(), FT_Raccess_Get_HeaderInfo(), ft_raster1_init(), ft_raster1_render(), ft_raster1_transform(), FT_Reference_Face(), FT_Reference_Library(), FT_Remove_Module(), FT_Render_Glyph_Internal(), FT_Request_Size(), FT_Select_Charmap(), FT_Select_Size(), FT_Set_Charmap(), FT_Set_MM_Blend_Coordinates(), FT_Set_Renderer(), FT_Set_Var_Blend_Coordinates(), FT_Set_Var_Design_Coordinates(), ft_smooth_raster_lcd(), ft_smooth_raster_lcdv(), ft_smooth_raster_overlap(), ft_smooth_render(), ft_smooth_transform(), FT_Stream_EnterFrame(), FT_Stream_Open(), FT_Stream_ReadAt(), FT_Stream_ReadChar(), FT_Stream_ReadFields(), FT_Stream_ReadULong(), FT_Stream_ReadULongLE(), FT_Stream_ReadUOffset(), FT_Stream_ReadUShort(), FT_Stream_ReadUShortLE(), FT_Stream_Seek(), ft_stroke_border_arcto(), ft_stroke_border_get_counts(), ft_stroke_border_grow(), ft_stroke_border_lineto(), ft_stroker_add_reverse_left(), ft_stroker_arcto(), FT_Stroker_BeginSubPath(), ft_stroker_cap(), FT_Stroker_ConicTo(), FT_Stroker_CubicTo(), FT_Stroker_EndSubPath(), ft_stroker_inside(), FT_Stroker_LineTo(), FT_Stroker_ParseOutline(), ft_stroker_process_corner(), ft_validator_init(), ftc_sbit_copy_bitmap(), ftc_snode_load(), get_apple_string(), Get_Kerning(), get_win_string(), get_x_mins(), hash_insert(), hash_rehash(), load_truetype_glyph(), pad4(), parse_blend_axis_types(), parse_blend_design_map(), parse_blend_design_positions(), parse_dict(), parse_fd_array(), parse_weight_vector(), pcf_cmap_init(), pcf_driver_init(), pcf_get_bdf_property(), pcf_get_charset_id(), pcf_get_metric(), pcf_get_properties(), PCF_Glyph_Load(), pcf_interpret_style(), pcf_load_font(), pcf_property_get(), pcf_property_set(), pcf_read_TOC(), pcf_seek_to_table_type(), PCF_Size_Request(), PCF_Size_Select(), pfr_aux_name_load(), pfr_cmap_init(), pfr_extra_item_load_bitmap_info(), pfr_extra_item_load_font_id(), pfr_extra_item_load_kerning_pairs(), pfr_extra_item_load_stem_snaps(), pfr_extra_items_parse(), pfr_face_get_kerning(), pfr_get_advance(), pfr_get_kerning(), pfr_get_metrics(), pfr_glyph_load_compound(), pfr_glyph_load_simple(), pfr_load_bitmap_bits(), pfr_load_bitmap_metrics(), ps_builder_add_contour(), ps_builder_start_point(), ps_dimension_add_counter(), ps_dimension_add_t1stem(), ps_hint_table_alloc(), ps_hint_table_ensure(), ps_hints_apply(), ps_hints_done(), ps_hints_open(), ps_hints_t1reset(), ps_hints_t1stem3(), ps_mask_ensure(), ps_mask_set_bit(), ps_mask_table_alloc(), ps_mask_table_ensure(), ps_mask_table_last(), ps_mask_table_merge(), ps_mask_table_merge_all(), ps_parser_init(), ps_parser_load_field(), ps_parser_load_field_table(), ps_parser_skip_PS_token(), ps_parser_to_bytes(), ps_parser_to_token(), ps_property_get(), ps_property_set(), ps_table_add(), Read255UShort(), read_num_hmetrics(), ReadBase128(), reallocate_t1_table(), reconstruct_font(), reconstruct_glyf(), reconstruct_hmtx(), safe_int_addition(), sfnt_load_face(), sfnt_table_info(), skip_literal_string(), skip_procedure(), skip_string(), store_loca(), store_points(), t1_allocate_blend(), t1_builder_add_contour(), t1_builder_start_point(), T1_Compute_Max_Advance(), t1_decoder_init(), t1_decoder_parse_metrics(), T1_Driver_Init(), T1_Face_Init(), T1_Get_Advances(), t1_get_glyph_name(), T1_Get_MM_Blend(), T1_Get_MM_WeightVector(), T1_Get_Multi_Master(), T1_Get_Private_Dict(), T1_Get_Track_Kerning(), T1_Get_Var_Design(), t1_load_keyword(), T1_Parse_Glyph_And_Get_Char_String(), t1_ps_get_font_extra(), t1_ps_get_font_info(), t1_ps_get_font_private(), T1_Read_PFM(), t1_set_mm_blend(), T1_Set_MM_Blend(), T1_Set_MM_Design(), T1_Set_MM_WeightVector(), T1_Size_Init(), T1_Size_Request(), T42_Driver_Init(), T42_Face_Init(), t42_get_glyph_name(), T42_GlyphSlot_Init(), t42_parse_dict(), t42_parser_init(), t42_ps_get_font_extra(), t42_ps_get_font_info(), t42_ps_get_font_private(), triplet_decode(), TT_Access_Glyph_Frame(), tt_cmap_init(), tt_driver_init(), tt_face_build_cmaps(), tt_face_get_name(), tt_face_init(), tt_face_load_any(), tt_face_load_cvt(), tt_face_load_fpgm(), tt_face_load_hdmx(), tt_face_load_post(), tt_face_load_prep(), tt_get_metrics(), TT_Hint_Glyph(), TT_Load_Glyph(), TT_Load_Glyph_Header(), tt_loader_init(), TT_Process_Composite_Component(), TT_Process_Composite_Glyph(), TT_Process_Simple_Glyph(), tt_property_get(), tt_property_set(), tt_size_init(), tt_size_request(), tt_size_reset(), woff2_decompress(), woff2_open_font(), woff_open_font(), and write_buf().

◆ n

Definition at line 470 of file ftbbox.c.

◆ vec