Home
last modified time | relevance | path

Searched refs:FT_MSB (Results 1 – 12 of 12) sorted by relevance

/external/freetype/include/internal/
Dftcalc.h337 #define FT_MSB( x ) ( 31 - __builtin_clz( x ) ) macro
341 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) ) macro
348 #ifndef FT_MSB
351 FT_MSB( FT_UInt32 z );
/external/pdfium/third_party/freetype/include/internal/
Dftcalc.h337 #define FT_MSB( x ) ( 31 - __builtin_clz( x ) ) macro
341 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) ) macro
348 #ifndef FT_MSB
351 FT_MSB( FT_UInt32 z );
/external/freetype/src/cff/
Dcf2font.c156 logBase2 = FT_MSB( (FT_UInt32)stemWidthPer1000 ) + in cf2_computeDarkening()
157 FT_MSB( (FT_UInt32)ppem ); in cf2_computeDarkening()
/external/pdfium/third_party/freetype/src/cff/
Dcf2font.c156 logBase2 = FT_MSB( (FT_UInt32)stemWidthPer1000 ) + in cf2_computeDarkening()
157 FT_MSB( (FT_UInt32)ppem ); in cf2_computeDarkening()
/external/pdfium/third_party/freetype/src/base/
Dftcalc.c113 #ifndef FT_MSB
116 FT_MSB( FT_UInt32 z ) in FT_MSB() function
315 i = 31 - FT_MSB( hi ); in ft_div64by32()
Dftbbox.c268 FT_MSB( FT_ABS( q1 ) | FT_ABS( q2 ) | FT_ABS( q3 ) | FT_ABS( q4 ) ); in cubic_peak()
Dfttrigon.c142 shift = FT_MSB( FT_ABS( x ) | FT_ABS( y ) ); in ft_trig_prenorm()
Dftoutln.c1061 xshift = FT_MSB( FT_ABS( cbox.xMax ) | FT_ABS( cbox.xMin ) ) - 14; in FT_Outline_Get_Orientation()
1064 yshift = FT_MSB( cbox.yMax - cbox.yMin ) - 14; in FT_Outline_Get_Orientation()
/external/freetype/src/base/
Dftcalc.c113 #ifndef FT_MSB
116 FT_MSB( FT_UInt32 z ) in FT_MSB() function
342 i = 31 - FT_MSB( hi ); in ft_div64by32()
Dftbbox.c268 shift = 27 - FT_MSB( (FT_UInt32)( FT_ABS( q1 ) | in cubic_peak()
Dfttrigon.c142 shift = FT_MSB( (FT_UInt32)( FT_ABS( x ) | FT_ABS( y ) ) ); in ft_trig_prenorm()
Dftoutln.c1054 xshift = FT_MSB( (FT_UInt32)( FT_ABS( cbox.xMax ) | in FT_Outline_Get_Orientation()
1058 yshift = FT_MSB( (FT_UInt32)( cbox.yMax - cbox.yMin ) ) - 14; in FT_Outline_Get_Orientation()