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.cpp5501 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert() argument
5503 if (&getSemantics() == &ToSemantics) { in convert()
5508 usesLayout<IEEEFloat>(ToSemantics)) in convert()
5509 return U.IEEE.convert(ToSemantics, RM, losesInfo); in convert()
5511 usesLayout<DoubleAPFloat>(ToSemantics)) { in convert()
5512 assert(&ToSemantics == &semPPCDoubleDouble); in convert()
5514 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
5518 usesLayout<IEEEFloat>(ToSemantics)) { in convert()
5519 auto Ret = getIEEE().convert(ToSemantics, RM, losesInfo); in convert()
5520 *this = APFloat(std::move(getIEEE()), ToSemantics); in convert()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h1346 LLVM_ABI opStatus convert(const fltSemantics &ToSemantics, roundingMode RM,