Lines Matching refs:semPPCDoubleDouble
95 static const fltSemantics semPPCDoubleDouble = {-1, 0, 0, 0}; variable
186 return semPPCDoubleDouble; in PPCDoubleDouble()
4226 assert(Semantics == &semPPCDoubleDouble);
4233 assert(Semantics == &semPPCDoubleDouble);
4239 assert(Semantics == &semPPCDoubleDouble);
4247 assert(Semantics == &semPPCDoubleDouble);
4254 assert(Semantics == &semPPCDoubleDouble);
4264 assert(Semantics == &semPPCDoubleDouble);
4270 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
4513 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
4517 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4522 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
4526 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4531 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
4534 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
4542 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
4547 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
4552 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
4555 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
4602 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
4610 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
4616 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
4648 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
4658 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
4661 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
4666 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
4669 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
4677 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
4685 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
4688 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
4696 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
4699 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
4707 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
4710 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
4718 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
4747 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
4755 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
4761 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
4767 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
4773 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
4774 return DoubleAPFloat(semPPCDoubleDouble, scalbn(Arg.Floats[0], Exp, RM), in scalbn()
4780 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
4785 return DoubleAPFloat(semPPCDoubleDouble, std::move(First), std::move(Second)); in frexp()
4836 assert(&ToSemantics == &semPPCDoubleDouble); in convert()