Searched defs:FT_MSB (Results 1 – 2 of 2) sorted by relevance
401 #define FT_MSB( x ) ( 31 - __builtin_clz( x ) ) macro405 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) ) macro416 #define FT_MSB( x ) ( 31 - _CountLeadingZeros( x ) ) macro423 #define FT_MSB( x ) ( 31 - _CountLeadingZeros( x ) ) macro441 #define FT_MSB( x ) FT_MSB_i386( x ) macro456 #define FT_MSB( x ) FT_MSB_i386( x ) macro462 #define FT_MSB( x ) (FT_Int)( 63 - _leadz( x ) ) macro468 #define FT_MSB( x ) (FT_Int)( 31 - _leadz32( x ) ) macro
113 FT_MSB( FT_UInt32 z ) in FT_MSB() function