Home
last modified time | relevance | path

Searched refs:roundMask (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc52 const src_rep_t roundMask =
93 const src_rep_t roundBits = srcSigFrac & roundMask;
138 const src_rep_t roundBits = denormalizedSignificand & roundMask;
/src/lib/libc/softfloat/bits64/
H A Dsoftfloat.c653 int64 roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
660 roundMask = LIT64( 0x00000000000007FF ); in roundAndPackFloatx80()
664 roundMask = LIT64( 0x000000FFFFFFFFFF ); in roundAndPackFloatx80()
675 roundIncrement = roundMask; in roundAndPackFloatx80()
684 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
698 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
703 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
705 roundMask |= roundIncrement; in roundAndPackFloatx80()
707 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
717 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
[all …]