Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp4843 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert() argument
4845 if (&getSemantics() == &ToSemantics) { in convert()
4850 usesLayout<IEEEFloat>(ToSemantics)) in convert()
4851 return U.IEEE.convert(ToSemantics, RM, losesInfo); in convert()
4853 usesLayout<DoubleAPFloat>(ToSemantics)) { in convert()
4854 assert(&ToSemantics == &semPPCDoubleDouble); in convert()
4856 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
4860 usesLayout<IEEEFloat>(ToSemantics)) { in convert()
4861 auto Ret = getIEEE().convert(ToSemantics, RM, losesInfo); in convert()
4862 *this = APFloat(std::move(getIEEE()), ToSemantics); in convert()
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPFloat.h1103 opStatus convert(const fltSemantics &ToSemantics, roundingMode RM,