Searched refs:shiftCount (Results 1 – 5 of 5) sorted by relevance
262 int8 shiftCount; in normalizeFloat32Subnormal() local264 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()265 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal()266 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()377 int8 shiftCount; in normalizeRoundAndPackFloat32() local379 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()380 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()431 int8 shiftCount; in normalizeFloat64Subnormal() local433 shiftCount = countLeadingZeros64( aSig ) - 11; in normalizeFloat64Subnormal()434 *zSigPtr = aSig<<shiftCount; in normalizeFloat64Subnormal()[all …]
652 int8 shiftCount;654 shiftCount = 0;656 shiftCount += 16;660 shiftCount += 8;663 shiftCount += countLeadingZerosHigh[ a>>24 ];664 return shiftCount;676 int8 shiftCount;678 shiftCount = 0;680 shiftCount += 32;685 shiftCount += (int8)countLeadingZeros32( (bits32)a );[all …]
159 int8 shiftCount; in normalizeFloat32Subnormal() local161 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()162 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal()163 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()274 int8 shiftCount; in normalizeRoundAndPackFloat32() local276 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()277 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()351 int8 shiftCount; in normalizeFloat64Subnormal() local354 shiftCount = countLeadingZeros32( aSig1 ) - 11; in normalizeFloat64Subnormal()355 if ( shiftCount < 0 ) { in normalizeFloat64Subnormal()[all …]
577 int8 shiftCount;579 shiftCount = 0;581 shiftCount += 16;585 shiftCount += 8;588 shiftCount += countLeadingZerosHigh[ a>>24 ];589 return shiftCount;
2718 unsigned int n, shiftCount; in tcDivide() local2723 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide()2724 if (shiftCount == 0) in tcDivide()2727 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide()2728 n = shiftCount / integerPartWidth; in tcDivide()2729 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide()2732 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()2747 if (shiftCount == 0) in tcDivide()2749 shiftCount--; in tcDivide()