Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp5196 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert() argument
5198 if (&getSemantics() == &ToSemantics) { in convert()
5203 usesLayout<IEEEFloat>(ToSemantics)) in convert()
5204 return U.IEEE.convert(ToSemantics, RM, losesInfo); in convert()
5206 usesLayout<DoubleAPFloat>(ToSemantics)) { in convert()
5207 assert(&ToSemantics == &semPPCDoubleDouble); in convert()
5209 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
5213 usesLayout<IEEEFloat>(ToSemantics)) { in convert()
5214 auto Ret = getIEEE().convert(ToSemantics, RM, losesInfo); in convert()
5215 *this = APFloat(std::move(getIEEE()), ToSemantics); in convert()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h1183 opStatus convert(const fltSemantics &ToSemantics, roundingMode RM,