HomeSort by: relevance | last modified time | path
    Searched refs:estimateSqrt32 (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/lib/libkern/
softfloat-macros.h 573 static bits32 estimateSqrt32( int16 aExp, bits32 a )
softfloat.c 2068 zSig = estimateSqrt32( aExp, aSig ) + 2;
3037 zSig = estimateSqrt32( aExp, aSig>>21 );
3960 zSig0 = estimateSqrt32( aExp, aSig0>>32 );
5084 zSig0 = estimateSqrt32( aExp, aSig0>>17 );
  /src/lib/libc/softfloat/bits64/
softfloat-macros 596 static bits32 estimateSqrt32( int16 aExp, bits32 a )
softfloat.c 2158 zSig = estimateSqrt32( aExp, aSig ) + 2;
3113 zSig = estimateSqrt32( aExp, aSig>>21 );
4111 zSig0 = estimateSqrt32( aExp, aSig0>>32 );
5311 zSig0 = estimateSqrt32((int16)aExp, (bits32)(aSig0>>17));
  /src/lib/libc/softfloat/bits32/
softfloat.c 1228 zSig = estimateSqrt32( aExp, aSig ) + 2;
2155 zSig0 = ( estimateSqrt32( aExp, term0 )>>1 ) + 1;

Completed in 20 milliseconds