Lines Matching refs:semPPCDoubleDouble
95 static const fltSemantics semPPCDoubleDouble = {-1, 0, 0, 128}; variable
186 return semPPCDoubleDouble; in PPCDoubleDouble()
4244 assert(Semantics == &semPPCDoubleDouble);
4251 assert(Semantics == &semPPCDoubleDouble);
4257 assert(Semantics == &semPPCDoubleDouble);
4265 assert(Semantics == &semPPCDoubleDouble);
4272 assert(Semantics == &semPPCDoubleDouble);
4282 assert(Semantics == &semPPCDoubleDouble);
4288 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
4531 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
4535 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4540 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
4544 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4549 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
4552 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
4560 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
4565 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
4570 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
4573 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
4620 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
4628 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
4634 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
4666 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
4676 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
4679 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
4684 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
4687 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
4695 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
4703 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
4706 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
4714 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
4717 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
4725 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
4728 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
4736 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
4765 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
4773 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
4779 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
4785 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
4791 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
4792 return DoubleAPFloat(semPPCDoubleDouble, scalbn(Arg.Floats[0], Exp, RM), in scalbn()
4798 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
4803 return DoubleAPFloat(semPPCDoubleDouble, std::move(First), std::move(Second)); in frexp()
4854 assert(&ToSemantics == &semPPCDoubleDouble); in convert()