Lines Matching defs:Tmp
4974 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4976 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM);
4977 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4983 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4985 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()));
4986 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4992 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4993 auto Ret = Tmp.mod(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()));
4994 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5003 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
5004 auto Ret = Tmp.fusedMultiplyAdd(
5007 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5013 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
5014 auto Ret = Tmp.roundToIntegral(RM);
5015 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5119 APFloat Tmp(semPPCDoubleDoubleLegacy);
5120 auto Ret = Tmp.convertFromString(S, RM);
5121 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5127 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
5128 auto Ret = Tmp.next(nextDown);
5129 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5146 APFloat Tmp(semPPCDoubleDoubleLegacy);
5147 auto Ret = Tmp.convertFromAPInt(Input, IsSigned, RM);
5148 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5157 APFloat Tmp(semPPCDoubleDoubleLegacy);
5158 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM);
5159 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5168 APFloat Tmp(semPPCDoubleDoubleLegacy);
5169 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM);
5170 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
5193 DoubleAPFloat Tmp(*this);
5194 Tmp.makeSmallest(this->isNegative());
5195 return Tmp.compare(*this) == cmpEqual;
5202 DoubleAPFloat Tmp(*this);
5203 Tmp.makeSmallestNormalized(this->isNegative());
5204 return Tmp.compare(*this) == cmpEqual;
5210 DoubleAPFloat Tmp(*this);
5211 Tmp.makeLargest(this->isNegative());
5212 return Tmp.compare(*this) == cmpEqual;
5231 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
5233 return Tmp.getExactInverse(nullptr);
5235 auto Ret = Tmp.getExactInverse(&Inv);