Home
last modified time | relevance | path

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

/freebsd-14.2/lib/libc/softfloat/bits64/
H A Dsoftfloat.c251 int8 shiftCount; in normalizeFloat32Subnormal() local
366 int8 shiftCount; in normalizeRoundAndPackFloat32() local
420 int8 shiftCount; in normalizeFloat64Subnormal() local
538 int8 shiftCount; in normalizeRoundAndPackFloat64() local
597 int8 shiftCount; in normalizeFloatx80Subnormal() local
820 int8 shiftCount; in normalizeRoundAndPackFloatx80() local
910 int8 shiftCount; in normalizeFloat128Subnormal() local
1084 int8 shiftCount; in normalizeRoundAndPackFloat128() local
1168 return packFloat64( 0, 0x432 - shiftCount, zSig<<shiftCount ); in uint32_to_float64()
1206 return packFloatx80( 0, 0x403E - shiftCount, zSig<<shiftCount ); in uint32_to_floatx80()
[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 += countLeadingZeros32( a );
[all …]
/freebsd-14.2/lib/libc/softfloat/bits32/
H A Dsoftfloat.c148 int8 shiftCount; in normalizeFloat32Subnormal() local
152 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal()
263 int8 shiftCount; in normalizeRoundAndPackFloat32() local
266 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount ); in normalizeRoundAndPackFloat32()
340 int8 shiftCount; in normalizeFloat64Subnormal() local
497 int8 shiftCount; in normalizeRoundAndPackFloat64() local
506 if ( 0 <= shiftCount ) { in normalizeRoundAndPackFloat64()
514 zExp -= shiftCount; in normalizeRoundAndPackFloat64()
548 int8 shiftCount; in int32_to_float64() local
581 int16 aExp, shiftCount; in float32_to_int32() local
[all …]
H A Dsoftfloat-macros577 int8 shiftCount;
579 shiftCount = 0;
581 shiftCount += 16;
585 shiftCount += 8;
588 shiftCount += countLeadingZerosHigh[ a>>24 ];
589 return shiftCount;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp2639 unsigned shiftCount = tcMSB(rhs, parts) + 1; in tcDivide() local
2640 if (shiftCount == 0) in tcDivide()
2643 shiftCount = parts * APINT_BITS_PER_WORD - shiftCount; in tcDivide()
2644 unsigned n = shiftCount / APINT_BITS_PER_WORD; in tcDivide()
2645 WordType mask = (WordType) 1 << (shiftCount % APINT_BITS_PER_WORD); in tcDivide()
2648 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()
2661 if (shiftCount == 0) in tcDivide()
2663 shiftCount--; in tcDivide()