Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc54 const src_rep_t roundMask = (SRC_REP_C(1) << (srcSigBits - dstSigBits)) - 1;
85 const src_rep_t roundBits = aAbs & roundMask;
119 const src_rep_t roundBits = denormalizedSignificand & roundMask;
/freebsd-13.1/lib/libc/softfloat/bits64/
H A Dsoftfloat.c656 int64 roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
678 roundIncrement = roundMask; in roundAndPackFloatx80()
687 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
701 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
706 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
708 roundMask |= roundIncrement; in roundAndPackFloatx80()
710 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
720 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
722 roundMask |= roundIncrement; in roundAndPackFloatx80()
724 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
[all …]