Lines Matching refs:semPPCDoubleDouble

168 static constexpr fltSemantics semPPCDoubleDouble = {-1, 0, 0, 128};  variable
270 return semPPCDoubleDouble; in PPCDoubleDouble()
4869 assert(Semantics == &semPPCDoubleDouble);
4876 assert(Semantics == &semPPCDoubleDouble);
4882 assert(Semantics == &semPPCDoubleDouble);
4890 assert(Semantics == &semPPCDoubleDouble);
4897 assert(Semantics == &semPPCDoubleDouble);
4907 assert(Semantics == &semPPCDoubleDouble);
4914 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
5157 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
5161 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
5166 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
5170 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
5175 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
5178 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
5186 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
5191 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
5196 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
5199 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
5246 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
5254 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
5260 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
5292 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
5302 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
5305 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
5310 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
5313 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
5321 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
5329 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
5332 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
5340 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
5343 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
5351 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
5354 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
5362 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
5400 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
5408 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
5414 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
5420 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
5436 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
5437 return DoubleAPFloat(semPPCDoubleDouble, scalbn(Arg.Floats[0], Exp, RM), in scalbn()
5443 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
5448 return DoubleAPFloat(semPPCDoubleDouble, std::move(First), std::move(Second)); in frexp()
5512 assert(&ToSemantics == &semPPCDoubleDouble); in convert()