Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp5317 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert() argument
5319 if (&getSemantics() == &ToSemantics) { in convert()
5324 usesLayout<IEEEFloat>(ToSemantics)) in convert()
5325 return U.IEEE.convert(ToSemantics, RM, losesInfo); in convert()
5327 usesLayout<DoubleAPFloat>(ToSemantics)) { in convert()
5328 assert(&ToSemantics == &semPPCDoubleDouble); in convert()
5330 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
5334 usesLayout<IEEEFloat>(ToSemantics)) { in convert()
5335 auto Ret = getIEEE().convert(ToSemantics, RM, losesInfo); in convert()
5336 *this = APFloat(std::move(getIEEE()), ToSemantics); in convert()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h1233 opStatus convert(const fltSemantics &ToSemantics, roundingMode RM,