Searched refs:FT_PAD_FLOOR (Results 1 – 2 of 2) sorted by relevance
/external/freetype/include/freetype/internal/ |
D | ftobjs.h | 76 #define FT_PAD_FLOOR( x, n ) ( (x) & ~((n)-1) ) macro 77 #define FT_PAD_ROUND( x, n ) FT_PAD_FLOOR( (x) + ((n)/2), n ) 78 #define FT_PAD_CEIL( x, n ) FT_PAD_FLOOR( (x) + ((n)-1), n )
|
/external/freetype/src/sfnt/ |
D | ttcmap.c | 412 sub = subs + ( FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 8 ) ); in tt_cmap2_get_subheader() 500 charcode = FT_PAD_FLOOR( charcode, 256 ) + char_lo; in tt_cmap2_char_next() 520 charcode = FT_PAD_FLOOR( charcode, 256 ) + 256; in tt_cmap2_char_next() 1008 num_segs2 = FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 2 ); in tt_cmap4_char_map_linear() 1097 num_segs2 = FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 2 ); in tt_cmap4_char_map_binary()
|