Lines Matching refs:semPPCDoubleDouble

154 static constexpr fltSemantics semPPCDoubleDouble = {-1, 0, 0, 128};  variable
253 return semPPCDoubleDouble; in PPCDoubleDouble()
4565 assert(Semantics == &semPPCDoubleDouble);
4572 assert(Semantics == &semPPCDoubleDouble);
4578 assert(Semantics == &semPPCDoubleDouble);
4586 assert(Semantics == &semPPCDoubleDouble);
4593 assert(Semantics == &semPPCDoubleDouble);
4603 assert(Semantics == &semPPCDoubleDouble);
4609 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
4852 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
4856 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4861 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
4865 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4870 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
4873 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
4881 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
4886 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
4891 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
4894 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
4941 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
4949 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
4955 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
4987 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
4997 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
5000 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
5005 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
5008 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
5016 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
5024 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
5027 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
5035 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
5038 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
5046 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
5049 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
5057 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
5095 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
5103 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
5109 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
5115 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
5131 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
5132 return DoubleAPFloat(semPPCDoubleDouble, scalbn(Arg.Floats[0], Exp, RM), in scalbn()
5138 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
5143 return DoubleAPFloat(semPPCDoubleDouble, std::move(First), std::move(Second)); in frexp()
5207 assert(&ToSemantics == &semPPCDoubleDouble); in convert()