• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/nwfpe/

Lines Matching defs:shiftCount

149     int8 shiftCount;
151 shiftCount = countLeadingZeros32( aSig ) - 8;
152 *zSigPtr = aSig<<shiftCount;
153 *zExpPtr = 1 - shiftCount;
262 int8 shiftCount;
264 shiftCount = countLeadingZeros32( zSig ) - 1;
265 return roundAndPackFloat32( roundData, zSign, zExp - shiftCount, zSig<<shiftCount );
310 int8 shiftCount;
312 shiftCount = countLeadingZeros64( aSig ) - 11;
313 *zSigPtr = aSig<<shiftCount;
314 *zExpPtr = 1 - shiftCount;
427 int8 shiftCount;
429 shiftCount = countLeadingZeros64( zSig ) - 1;
430 return roundAndPackFloat64( roundData, zSign, zExp - shiftCount, zSig<<shiftCount );
486 int8 shiftCount;
488 shiftCount = countLeadingZeros64( aSig );
489 *zSigPtr = aSig<<shiftCount;
490 *zExpPtr = 1 - shiftCount;
710 int8 shiftCount;
717 shiftCount = countLeadingZeros64( zSig0 );
718 shortShift128Left( zSig0, zSig1, shiftCount, &zSig0, &zSig1 );
719 zExp -= shiftCount;
756 int8 shiftCount;
762 shiftCount = countLeadingZeros32( absA ) + 21;
764 return packFloat64( aSign, 0x432 - shiftCount, zSig<<shiftCount );
782 int8 shiftCount;
788 shiftCount = countLeadingZeros32( absA ) + 32;
790 return packFloatx80( zSign, 0x403E - shiftCount, zSig<<shiftCount );
810 int16 aExp, shiftCount;
819 shiftCount = 0xAF - aExp;
822 if ( 0 < shiftCount ) shift64RightJamming( zSig, shiftCount, &zSig );
841 int16 aExp, shiftCount;
848 shiftCount = aExp - 0x9E;
849 if ( 0 <= shiftCount ) {
860 z = aSig>>( - shiftCount );
861 if ( (bits32) ( aSig<<( shiftCount & 31 ) ) ) {
1627 int16 aExp, shiftCount;
1635 shiftCount = 0x42C - aExp;
1636 if ( 0 < shiftCount ) shift64RightJamming( aSig, shiftCount, &aSig );
1655 int16 aExp, shiftCount;
1662 shiftCount = 0x433 - aExp;
1663 if ( shiftCount < 21 ) {
1667 else if ( 52 < shiftCount ) {
1673 aSig >>= shiftCount;
1681 if ( ( aSig<<shiftCount ) != savedASig ) {
1702 int16 aExp, shiftCount;
1710 shiftCount = 0x42C - aExp;
1711 if ( 0 < shiftCount ) shift64RightJamming( aSig, shiftCount, &aSig );
1728 int16 aExp, shiftCount;
1735 shiftCount = 0x433 - aExp;
1736 if ( shiftCount < 21 ) {
1740 else if ( 52 < shiftCount ) {
1746 aSig >>= shiftCount;
1754 if ( ( aSig<<shiftCount ) != savedASig ) {
2516 int32 aExp, shiftCount;
2523 shiftCount = 0x4037 - aExp;
2524 if ( shiftCount <= 0 ) shiftCount = 1;
2525 shift64RightJamming( aSig, shiftCount, &aSig );
2544 int32 aExp, shiftCount;
2551 shiftCount = 0x403E - aExp;
2552 if ( shiftCount < 32 ) {
2556 else if ( 63 < shiftCount ) {
2561 aSig >>= shiftCount;
2569 if ( ( aSig<<shiftCount ) != savedASig ) {