• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/

Lines Matching refs:Tmp

4517   APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4519 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM);
4520 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4526 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4528 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()));
4529 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4535 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4536 auto Ret = Tmp.mod(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()));
4537 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4546 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4547 auto Ret = Tmp.fusedMultiplyAdd(
4550 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4556 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4557 auto Ret = Tmp.roundToIntegral(RM);
4558 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4662 APFloat Tmp(semPPCDoubleDoubleLegacy);
4663 auto Ret = Tmp.convertFromString(S, RM);
4664 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4670 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4671 auto Ret = Tmp.next(nextDown);
4672 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4689 APFloat Tmp(semPPCDoubleDoubleLegacy);
4690 auto Ret = Tmp.convertFromAPInt(Input, IsSigned, RM);
4691 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4700 APFloat Tmp(semPPCDoubleDoubleLegacy);
4701 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM);
4702 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4711 APFloat Tmp(semPPCDoubleDoubleLegacy);
4712 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM);
4713 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt());
4736 DoubleAPFloat Tmp(*this);
4737 Tmp.makeSmallest(this->isNegative());
4738 return Tmp.compare(*this) == cmpEqual;
4744 DoubleAPFloat Tmp(*this);
4745 Tmp.makeLargest(this->isNegative());
4746 return Tmp.compare(*this) == cmpEqual;
4765 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt());
4767 return Tmp.getExactInverse(nullptr);
4769 auto Ret = Tmp.getExactInverse(&Inv);