HomeSort by relevance Sort by last modified time
    Searched refs:FT_PAD_FLOOR (Results 1 - 2 of 2) sorted by null

  /external/freetype/include/freetype/internal/
ftobjs.h 76 #define FT_PAD_FLOOR( x, n ) ( (x) & ~((n)-1) )
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 )
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 412 sub = subs + ( FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 8 ) );
500 charcode = FT_PAD_FLOOR( charcode, 256 ) + char_lo;
520 charcode = FT_PAD_FLOOR( charcode, 256 ) + 256;
    [all...]

Completed in 64 milliseconds