Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp5117 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert() argument
5119 if (&getSemantics() == &ToSemantics) { in convert()
5124 usesLayout<IEEEFloat>(ToSemantics)) in convert()
5125 return U.IEEE.convert(ToSemantics, RM, losesInfo); in convert()
5127 usesLayout<DoubleAPFloat>(ToSemantics)) { in convert()
5128 assert(&ToSemantics == &semPPCDoubleDouble); in convert()
5130 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
5134 usesLayout<IEEEFloat>(ToSemantics)) { in convert()
5135 auto Ret = getIEEE().convert(ToSemantics, RM, losesInfo); in convert()
5136 *this = APFloat(std::move(getIEEE()), ToSemantics); in convert()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFloat.h1117 opStatus convert(const fltSemantics &ToSemantics, roundingMode RM,