Home
last modified time | relevance | path

Searched refs:shiftCount (Results 1 – 5 of 5) sorted by relevance

/minix3/lib/libc/softfloat/bits64/
H A Dsoftfloat.c262 int8 shiftCount; in normalizeFloat32Subnormal() local
264 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()
265 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal()
266 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()
377 int8 shiftCount; in normalizeRoundAndPackFloat32() local
379 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()
380 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()
431 int8 shiftCount; in normalizeFloat64Subnormal() local
433 shiftCount = countLeadingZeros64( aSig ) - 11; in normalizeFloat64Subnormal()
434 *zSigPtr = aSig<<shiftCount; in normalizeFloat64Subnormal()
[all …]
H A Dsoftfloat-macros652 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 …]
/minix3/lib/libc/softfloat/bits32/
H A Dsoftfloat.c159 int8 shiftCount; in normalizeFloat32Subnormal() local
161 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()
162 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal()
163 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()
274 int8 shiftCount; in normalizeRoundAndPackFloat32() local
276 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()
277 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()
351 int8 shiftCount; in normalizeFloat64Subnormal() local
354 shiftCount = countLeadingZeros32( aSig1 ) - 11; in normalizeFloat64Subnormal()
355 if ( shiftCount < 0 ) { in normalizeFloat64Subnormal()
[all …]
H A Dsoftfloat-macros577 int8 shiftCount;
579 shiftCount = 0;
581 shiftCount += 16;
585 shiftCount += 8;
588 shiftCount += countLeadingZerosHigh[ a>>24 ];
589 return shiftCount;
/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp2718 unsigned int n, shiftCount; in tcDivide() local
2723 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()