Home
last modified time | relevance | path

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

/external/llvm-project/libc/utils/FPUtil/
DSqrtLongDoubleX86.h70 int xExp = bits.getExponent();
77 internal::normalize<long double>(xExp, xMant);
81 if (xExp & 1) {
82 --xExp;
121 xExp = ((xExp >> 1) + FPBits<long double>::exponentBias);
122 y |= (static_cast<UIntType>(xExp)
132 out.exponent = xExp;
DSqrt.h115 int xExp = bits.getExponent(); in sqrt() local
120 ++xExp; // let xExp be the correct exponent of One bit. in sqrt()
121 internal::normalize<T>(xExp, xMant); in sqrt()
127 if (xExp & 1) { in sqrt()
128 --xExp; in sqrt()
167 xExp = ((xExp >> 1) + FPBits<T>::exponentBias); in sqrt()
169 y = (y - One) | (static_cast<UIntType>(xExp) << MantissaWidth<T>::value); in sqrt()