Home
last modified time | relevance | path

Searched refs:FT_PAD_FLOOR (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dftobjs.h87 #define FT_PAD_FLOOR( x, n ) ( (x) & ~FT_TYPEOF( x )( (n) - 1 ) ) macro
88 #define FT_PAD_ROUND( x, n ) FT_PAD_FLOOR( (x) + (n) / 2, n )
89 #define FT_PAD_CEIL( x, n ) FT_PAD_FLOOR( (x) + (n) - 1, n )
97 #define FT_PAD_ROUND_LONG( x, n ) FT_PAD_FLOOR( ADD_LONG( (x), (n) / 2 ), \
99 #define FT_PAD_CEIL_LONG( x, n ) FT_PAD_FLOOR( ADD_LONG( (x), (n) - 1 ), \
104 #define FT_PAD_ROUND_INT32( x, n ) FT_PAD_FLOOR( ADD_INT32( (x), (n) / 2 ), \
106 #define FT_PAD_CEIL_INT32( x, n ) FT_PAD_FLOOR( ADD_INT32( (x), (n) - 1 ), \
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttcmap.c440 sub = subs + ( FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 8 ) ); in tt_cmap2_get_subheader()
542 charcode = FT_PAD_FLOOR( charcode, 256 ) + char_lo; in tt_cmap2_char_next()
571 charcode = FT_PAD_FLOOR( charcode, 0x100 ) + 0x100; in tt_cmap2_char_next()
1114 num_segs2 = FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 2 ); in tt_cmap4_char_map_linear()
1247 num_segs2 = FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 2 ); in tt_cmap4_char_map_binary()
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.264629 * include/internal/ftobjs.h (FT_PAD_FLOOR, FT_PIX_FLOOR),
5085 * include/internal/ftobjs.h (FT_PAD_FLOOR, FT_PIX_FLOOR),
DChangeLog.213495 * include/freetype/internal/ftobjs.h (FT_PAD_FLOOR, FT_PAD_ROUND,