Lines Matching refs:bits32
43 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr )
45 bits32 z;
464 bits32 aHigh, aLow, bHigh, bLow;
467 aLow = (bits32)a;
468 aHigh = (bits32)(a>>32);
469 bLow = (bits32)b;
470 bHigh = (bits32)(b>>32);
596 static bits32 estimateSqrt32( int16 aExp, bits32 a )
607 bits32 z;
619 if ( z <= a ) return (bits32) ( ( (bits32) a )>>1 );
621 return ( (bits32) ( ( ( (bits64) a )<<31 ) / z ) ) + ( z>>1 );
632 static int8 countLeadingZeros32( bits32 a )
685 shiftCount += (int8)countLeadingZeros32( (bits32)a );