HomeSort by: relevance | last modified time | path
    Searched defs:roundAndPackFloat64 (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/softfloat/bits32/
softfloat.c 420 roundAndPackFloat64(
498 to the abstract input. This routine is just like `roundAndPackFloat64'
526 return roundAndPackFloat64( zSign, zExp, zSig0, zSig1, zSig2 );
1740 return roundAndPackFloat64( zSign, zExp, zSig0, zSig1, zSig2 );
1928 return roundAndPackFloat64( zSign, zExp, zSig0, zSig1, zSig2 );
2008 return roundAndPackFloat64( zSign, zExp, zSig0, zSig1, zSig2 );
2183 return roundAndPackFloat64( 0, zExp, zSig0, zSig1, zSig2 );
  /src/sys/lib/libkern/
softfloat.c 481 static float64 roundAndPackFloat64( flag zSign, int16 zExp, bits64 zSig )
537 | `roundAndPackFloat64' except that `zSig' does not have to be normalized.
548 return roundAndPackFloat64( zSign, zExp - shiftCount, zSig<<shiftCount );
2669 return roundAndPackFloat64( zSign, zExp, zSig );
2844 return roundAndPackFloat64( zSign, zExp, zSig0 );
2914 return roundAndPackFloat64( zSign, zExp, zSig );
3051 return roundAndPackFloat64( 0, zExp, zSig );
3408 return roundAndPackFloat64( aSign, aExp, zSig );
4439 return roundAndPackFloat64( aSign, aExp, aSig0 );
  /src/lib/libc/softfloat/bits64/
softfloat.c 485 static float64 roundAndPackFloat64( flag zSign, int16 zExp, bits64 zSig )
544 `roundAndPackFloat64' except that `zSig' does not have to be normalized.
555 return roundAndPackFloat64( zSign, zExp - shiftCount, zSig<<shiftCount );
2738 return roundAndPackFloat64( zSign, zExp, zSig );
2917 return roundAndPackFloat64( zSign, zExp, zSig0 );
2988 return roundAndPackFloat64( zSign, zExp, zSig );
3127 return roundAndPackFloat64( 0, zExp, zSig );
3505 return roundAndPackFloat64( aSign, aExp, zSig );
4614 return roundAndPackFloat64( aSign, aExp, aSig0 );

Completed in 22 milliseconds