Home
last modified time | relevance | path

Searched refs:toSemantics (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DFloating.h55 Floating toSemantics(const llvm::fltSemantics *Sem, in toSemantics() function
65 Floating toSemantics(const Floating &Other, llvm::RoundingMode RM) const { in toSemantics() function
66 return toSemantics(&Other.F.getSemantics(), RM); in toSemantics()
H A DInterp.h2025 Floating Result = F.toSemantics(Sem, RM); in CastFP()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2470 IEEEFloat::opStatus IEEEFloat::convert(const fltSemantics &toSemantics, in convert() argument
2481 newPartCount = partCountForBits(toSemantics.precision + 1); in convert()
2483 shift = toSemantics.precision - fromSemantics.precision; in convert()
2487 &toSemantics != &semX87DoubleExtended && category == fcNaN && in convert()
2505 if (exponent + exponentChange < toSemantics.minExponent) in convert()
2506 exponentChange = toSemantics.minExponent - exponent; in convert()
2545 semantics = &toSemantics; in convert()