Searched refs:new_max (Results 1 – 10 of 10) sorted by relevance
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftgloadr.c | 211 FT_UInt new_max, old_max; in FT_GlyphLoader_CheckPoints() local 218 if ( new_max > old_max ) in FT_GlyphLoader_CheckPoints() 220 new_max = FT_PAD_CEIL( new_max, 8 ); in FT_GlyphLoader_CheckPoints() 243 loader->max_points = new_max; in FT_GlyphLoader_CheckPoints() 250 if ( new_max > old_max ) in FT_GlyphLoader_CheckPoints() 252 new_max = FT_PAD_CEIL( new_max, 4 ); in FT_GlyphLoader_CheckPoints() 261 loader->max_contours = new_max; in FT_GlyphLoader_CheckPoints() 285 FT_UInt new_max, old_max; in FT_GlyphLoader_CheckSubGlyphs() local 293 if ( new_max > old_max ) in FT_GlyphLoader_CheckSubGlyphs() 295 new_max = FT_PAD_CEIL( new_max, 2 ); in FT_GlyphLoader_CheckSubGlyphs() [all …]
|
A D | ftstroke.c | 321 FT_UInt new_max = border->num_points + new_points; in ft_stroke_border_grow() local 325 if ( new_max > old_max ) in ft_stroke_border_grow() 331 while ( cur_max < new_max ) in ft_stroke_border_grow()
|
/AliOS-Things-master/components/freetype/src/autofit/ |
A D | afhints.c | 49 FT_Int new_max = old_max; in af_axis_hints_new_segment() local 59 new_max += ( new_max >> 2 ) + 4; in af_axis_hints_new_segment() 60 if ( new_max < old_max || new_max > big_max ) in af_axis_hints_new_segment() 61 new_max = big_max; in af_axis_hints_new_segment() 104 new_max += ( new_max >> 2 ) + 4; in af_axis_hints_new_edge() 105 if ( new_max < old_max || new_max > big_max ) in af_axis_hints_new_edge() 106 new_max = big_max; in af_axis_hints_new_edge() 583 if ( new_max > old_max ) in af_glyph_hints_reload() 585 new_max = ( new_max + 3 ) & ~3; /* round up to a multiple of 4 */ in af_glyph_hints_reload() 600 if ( new_max > old_max ) in af_glyph_hints_reload() [all …]
|
/AliOS-Things-master/components/freetype/src/pshinter/ |
A D | pshrec.c | 66 FT_UInt new_max = count; in ps_hint_table_ensure() local 70 if ( new_max > old_max ) in ps_hint_table_ensure() 73 new_max = FT_PAD_CEIL( new_max, 8 ); in ps_hint_table_ensure() 75 table->max_hints = new_max; in ps_hint_table_ensure() 145 if ( new_max > old_max ) in ps_mask_ensure() 147 new_max = FT_PAD_CEIL( new_max, 8 ); in ps_mask_ensure() 149 mask->max_bits = new_max * 8; in ps_mask_ensure() 238 FT_UInt new_max = count; in ps_mask_table_ensure() local 242 if ( new_max > old_max ) in ps_mask_table_ensure() 244 new_max = FT_PAD_CEIL( new_max, 8 ); in ps_mask_table_ensure() [all …]
|
/AliOS-Things-master/components/freetype/src/pfr/ |
A D | pfrgload.c | 294 FT_UInt new_max = FT_PAD_CEIL( count, 8 ); in pfr_glyph_load_simple() local 299 new_max ) ) in pfr_glyph_load_simple() 302 glyph->max_xy_control = new_max; in pfr_glyph_load_simple() 598 FT_UInt new_max = ( org_count + count + 3 ) & (FT_UInt)-4; in pfr_glyph_load_compound() local 603 if ( new_max > 64 ) in pfr_glyph_load_compound() 611 if ( FT_RENEW_ARRAY( glyph->subs, glyph->max_subs, new_max ) ) in pfr_glyph_load_compound() 614 glyph->max_subs = new_max; in pfr_glyph_load_compound()
|
A D | pfrload.c | 368 FT_UInt new_max = FT_PAD_CEIL( phy_font->num_strikes + count, 4 ); in pfr_extra_item_load_bitmap_info() local 373 new_max ) ) in pfr_extra_item_load_bitmap_info() 376 phy_font->max_strikes = new_max; in pfr_extra_item_load_bitmap_info()
|
/AliOS-Things-master/components/freetype/src/cid/ |
A D | cidload.c | 437 FT_UInt new_max = FT_PAD_CEIL( num_subrs + 1, 4 ); in cid_read_subrs() local 440 if ( new_max <= max_offsets ) in cid_read_subrs() 446 if ( FT_RENEW_ARRAY( offsets, max_offsets, new_max ) ) in cid_read_subrs() 449 max_offsets = new_max; in cid_read_subrs()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngpread.c | 485 size_t new_max; in png_push_save_buffer() local 494 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256; in png_push_save_buffer() 497 (size_t)new_max); in png_push_save_buffer() 510 png_ptr->save_buffer_max = new_max; in png_push_save_buffer()
|
/AliOS-Things-master/components/freetype/src/truetype/ |
A D | ttinterp.h | 319 FT_ULong new_max );
|
A D | ttinterp.c | 529 FT_ULong new_max ) in Update_Max() argument 535 if ( *size < new_max ) in Update_Max() 537 if ( FT_REALLOC( *pbuff, *size * multiplier, new_max * multiplier ) ) in Update_Max() 539 *size = new_max; in Update_Max()
|
Completed in 29 milliseconds