Searched refs:shiftCount (Results 1 – 5 of 5) sorted by relevance
252 int8 shiftCount; in normalizeFloat32Subnormal() local254 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()255 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal()256 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()367 int8 shiftCount; in normalizeRoundAndPackFloat32() local369 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()370 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()421 int8 shiftCount; in normalizeFloat64Subnormal() local423 shiftCount = countLeadingZeros64( aSig ) - 11; in normalizeFloat64Subnormal()424 *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 += countLeadingZeros32( a );[all …]
149 int8 shiftCount; in normalizeFloat32Subnormal() local151 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()152 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal()153 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()264 int8 shiftCount; in normalizeRoundAndPackFloat32() local266 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()267 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()341 int8 shiftCount; in normalizeFloat64Subnormal() local344 shiftCount = countLeadingZeros32( aSig1 ) - 11; in normalizeFloat64Subnormal()345 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;
2631 unsigned shiftCount = tcMSB(rhs, parts) + 1; in tcDivide() local2632 if (shiftCount == 0) in tcDivide()2635 shiftCount = parts * APINT_BITS_PER_WORD - shiftCount; in tcDivide()2636 unsigned n = shiftCount / APINT_BITS_PER_WORD; in tcDivide()2637 WordType mask = (WordType) 1 << (shiftCount % APINT_BITS_PER_WORD); in tcDivide()2640 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()2653 if (shiftCount == 0) in tcDivide()2655 shiftCount--; in tcDivide()