Home
last modified time | relevance | path

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

/freebsd-14.2/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.h1586 Floating Result = F.toSemantics(Sem, RM); in CastFP()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2439 IEEEFloat::opStatus IEEEFloat::convert(const fltSemantics &toSemantics, in convert() argument
2450 newPartCount = partCountForBits(toSemantics.precision + 1); in convert()
2452 shift = toSemantics.precision - fromSemantics.precision; in convert()
2456 &toSemantics != &semX87DoubleExtended && category == fcNaN && in convert()
2474 if (exponent + exponentChange < toSemantics.minExponent) in convert()
2475 exponentChange = toSemantics.minExponent - exponent; in convert()
2514 semantics = &toSemantics; in convert()