Searched refs:FT_PIX_FLOOR (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
D | ftobjs.h | 91 #define FT_PIX_FLOOR( x ) ( (x) & ~FT_TYPEOF( x )63 ) macro 92 #define FT_PIX_ROUND( x ) FT_PIX_FLOOR( (x) + 32 ) 93 #define FT_PIX_CEIL( x ) FT_PIX_FLOOR( (x) + 63 ) 101 #define FT_PIX_ROUND_LONG( x ) FT_PIX_FLOOR( ADD_LONG( (x), 32 ) ) 102 #define FT_PIX_CEIL_LONG( x ) FT_PIX_FLOOR( ADD_LONG( (x), 63 ) ) 108 #define FT_PIX_ROUND_INT32( x ) FT_PIX_FLOOR( ADD_INT32( (x), 32 ) ) 109 #define FT_PIX_CEIL_INT32( x ) FT_PIX_FLOOR( ADD_INT32( (x), 63 ) )
|
/third_party/skia/third_party/externals/freetype/src/autofit/ |
D | afloader.c | 530 bbox.xMin = FT_PIX_FLOOR( bbox.xMin ); in af_loader_load_glyph() 531 bbox.yMin = FT_PIX_FLOOR( bbox.yMin ); in af_loader_load_glyph() 540 slot->metrics.vertBearingX = FT_PIX_FLOOR( bbox.xMin + vvector.x ); in af_loader_load_glyph() 541 slot->metrics.vertBearingY = FT_PIX_FLOOR( bbox.yMax + vvector.y ); in af_loader_load_glyph()
|
D | afcjk.c | 1708 d_off1 = cur_pos1 - FT_PIX_FLOOR( cur_pos1 ); in af_hint_normal_stem() 1709 d_off2 = cur_pos2 - FT_PIX_FLOOR( cur_pos2 ); in af_hint_normal_stem()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftbitmap.c | 847 source_offset.x = FT_PIX_FLOOR( source_offset_.x ); in FT_Bitmap_Blend() 848 source_offset.y = FT_PIX_FLOOR( source_offset_.y ); in FT_Bitmap_Blend() 849 target_offset.x = FT_PIX_FLOOR( atarget_offset->x ); in FT_Bitmap_Blend() 850 target_offset.y = FT_PIX_FLOOR( atarget_offset->y ); in FT_Bitmap_Blend()
|
D | ftglyph.c | 515 acbox->xMin = FT_PIX_FLOOR( acbox->xMin ); in FT_Glyph_Get_CBox() 516 acbox->yMin = FT_PIX_FLOOR( acbox->yMin ); in FT_Glyph_Get_CBox()
|
D | ftobjs.c | 791 metrics->horiBearingX = FT_PIX_FLOOR( metrics->horiBearingX ); in ft_glyphslot_grid_fit_metrics() 799 metrics->vertBearingX = FT_PIX_FLOOR( metrics->vertBearingX ); in ft_glyphslot_grid_fit_metrics() 800 metrics->vertBearingY = FT_PIX_FLOOR( metrics->vertBearingY ); in ft_glyphslot_grid_fit_metrics() 809 metrics->vertBearingX = FT_PIX_FLOOR( metrics->vertBearingX ); in ft_glyphslot_grid_fit_metrics() 810 metrics->vertBearingY = FT_PIX_FLOOR( metrics->vertBearingY ); in ft_glyphslot_grid_fit_metrics() 814 bottom = FT_PIX_FLOOR( SUB_LONG( metrics->horiBearingY, in ft_glyphslot_grid_fit_metrics() 817 metrics->horiBearingX = FT_PIX_FLOOR( metrics->horiBearingX ); in ft_glyphslot_grid_fit_metrics() 3084 metrics->descender = FT_PIX_FLOOR( FT_MulFix( face->descender, in ft_recompute_scaled_metrics()
|
/third_party/skia/third_party/externals/freetype/src/pshinter/ |
D | pshalgo.c | 557 pos = FT_PIX_FLOOR( pos + ( len >> 1 ) ); in psh_hint_align() 639 pos = FT_PIX_FLOOR( pos + ( len >> 1 ) ) + 32; in psh_hint_align() 795 delta_a = FT_PIX_FLOOR( center ) + 32 - center; 801 delta_b = FT_PIX_FLOOR( center ) + 32 - center;
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
D | ttinterp.c | 2052 val = ADD_LONG( FT_PIX_FLOOR( ADD_LONG( distance, compensation ) ), in Round_To_Half_Grid() 2059 val = NEG_LONG( ADD_LONG( FT_PIX_FLOOR( SUB_LONG( compensation, in Round_To_Half_Grid() 2099 val = FT_PIX_FLOOR( ADD_LONG( distance, compensation ) ); in Round_Down_To_Grid() 2105 val = NEG_LONG( FT_PIX_FLOOR( SUB_LONG( compensation, distance ) ) ); in Round_Down_To_Grid() 3035 args[0] = FT_PIX_FLOOR( args[0] ); in Ins_FLOOR()
|
/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
D | ChangeLog.26 | 4629 * include/internal/ftobjs.h (FT_PAD_FLOOR, FT_PIX_FLOOR), 5085 * include/internal/ftobjs.h (FT_PAD_FLOOR, FT_PIX_FLOOR),
|
D | ChangeLog.21 | 3496 FT_PAD_CEIL, FT_PIX_FLOOR, FT_PIX_ROUND, FT_PIX_CEIL): New macros.
|