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

  /external/freetype/include/internal/
ftcalc.h 337 #define FT_MSB( x ) ( 31 - __builtin_clz( x ) )
341 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) )
348 #ifndef FT_MSB
351 FT_MSB( FT_UInt32 z );
  /external/pdfium/third_party/freetype/include/internal/
ftcalc.h 337 #define FT_MSB( x ) ( 31 - __builtin_clz( x ) )
341 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) )
348 #ifndef FT_MSB
351 FT_MSB( FT_UInt32 z );
  /external/freetype/src/cff/
cf2font.c 148 /* FT_MSB computes the integer part of the base 2 logarithm. The */
156 logBase2 = FT_MSB( (FT_UInt32)stemWidthPer1000 ) +
157 FT_MSB( (FT_UInt32)ppem );
  /external/pdfium/third_party/freetype/src/cff/
cf2font.c 148 /* FT_MSB computes the integer part of the base 2 logarithm. The */
156 logBase2 = FT_MSB( (FT_UInt32)stemWidthPer1000 ) +
157 FT_MSB( (FT_UInt32)ppem );
  /external/freetype/src/base/
ftcalc.c 113 #ifndef FT_MSB
116 FT_MSB( FT_UInt32 z )
151 #endif /* !FT_MSB */
342 i = 31 - FT_MSB( hi );
ftbbox.c 266 /* for the peak to exist and avoids undefined FT_MSB. */
268 shift = 27 - FT_MSB( (FT_UInt32)( FT_ABS( q1 ) |
fttrigon.c 142 shift = FT_MSB( (FT_UInt32)( FT_ABS( x ) | FT_ABS( y ) ) );
ftoutln.c 1050 /* Handle collapsed outlines to avoid undefined FT_MSB. */
1054 xshift = FT_MSB( (FT_UInt32)( FT_ABS( cbox.xMax ) |
1058 yshift = FT_MSB( (FT_UInt32)( cbox.yMax - cbox.yMin ) ) - 14;
  /external/pdfium/third_party/freetype/src/base/
ftcalc.c 113 #ifndef FT_MSB
116 FT_MSB( FT_UInt32 z )
150 #endif /* !FT_MSB */
315 i = 31 - FT_MSB( hi );
ftbbox.c 265 /* for the peak to exist and avoids undefined FT_MSB. */
268 FT_MSB( FT_ABS( q1 ) | FT_ABS( q2 ) | FT_ABS( q3 ) | FT_ABS( q4 ) );
fttrigon.c 142 shift = FT_MSB( FT_ABS( x ) | FT_ABS( y ) );
ftoutln.c 1057 /* Handle collapsed outlines to avoid undefined FT_MSB. */
1061 xshift = FT_MSB( FT_ABS( cbox.xMax ) | FT_ABS( cbox.xMin ) ) - 14;
1064 yshift = FT_MSB( cbox.yMax - cbox.yMin ) - 14;

Completed in 844 milliseconds