Home
last modified time | relevance | path

Searched refs:ConvertUnsigned (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dreal.h241 Fraction fraction{Fraction::ConvertUnsigned(absN).value};
245 Fraction fraction{Fraction::ConvertUnsigned(absN.SHIFTR(bitsLost)).value};
274 auto converted{result.value.ConvertUnsigned(rshifted)};
321 Fraction::ConvertUnsigned(xFraction).value.SHIFTL(-bitsLost)};
325 Fraction::ConvertUnsigned(xFraction.SHIFTR(bitsLost)).value};
342 Fraction result{Fraction::ConvertUnsigned(word_).value}; in GetFraction()
380 return Significand::ConvertUnsigned(word_).value; in GetSignificand()
H A Dinteger.h281 static constexpr ValueWithOverflow ConvertUnsigned(const FROM &that) { in ConvertUnsigned() function
303 ValueWithOverflow result{ConvertUnsigned(that)}; in ConvertSigned()
H A Dtools.h513 Constant<TO>{Scalar<TO>::ConvertUnsigned(std::move(x)).value}}; in ConvertToType()
518 Constant<TO>{Scalar<TO>{Word::ConvertUnsigned(std::move(x)).value}}}; in ConvertToType()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dreal.cpp304 Extended::ConvertUnsigned(GetFraction()).value.SHIFTL(expo + 1)}; in SQRT()
324 Fraction::ConvertUnsigned(extFrac.SHIFTR(2)).value, rounding, in SQRT()
530 word_ = Word::ConvertUnsigned(fraction).value; in Normalize()
H A Dfold-logical.cpp19 exts.push_back(Scalar<LargestInt>::ConvertUnsigned(v).value); in ZeroExtend()
H A Dfold-implementation.h1995 From converted{From::ConvertUnsigned(real.RawBits()).value}; in ToReal()