Lines Matching refs:semPPCDoubleDouble

165 static constexpr fltSemantics semPPCDoubleDouble = {-1, 0, 0, 128};  variable
280 return semPPCDoubleDouble; in PPCDoubleDouble()
4686 assert(Semantics == &semPPCDoubleDouble);
4693 assert(Semantics == &semPPCDoubleDouble);
4699 assert(Semantics == &semPPCDoubleDouble);
4707 assert(Semantics == &semPPCDoubleDouble);
4714 assert(Semantics == &semPPCDoubleDouble);
4724 assert(Semantics == &semPPCDoubleDouble);
4730 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
4973 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
4977 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4982 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
4986 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4991 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
4994 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
5002 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
5007 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
5012 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
5015 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
5062 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
5070 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
5076 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
5108 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
5118 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
5121 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
5126 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
5129 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
5137 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
5145 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
5148 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
5156 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
5159 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
5167 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
5170 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
5178 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
5216 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
5224 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
5230 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
5236 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
5252 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
5253 return DoubleAPFloat(semPPCDoubleDouble, scalbn(Arg.Floats[0], Exp, RM), in scalbn()
5259 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
5264 return DoubleAPFloat(semPPCDoubleDouble, std::move(First), std::move(Second)); in frexp()
5328 assert(&ToSemantics == &semPPCDoubleDouble); in convert()