Lines Matching refs:bitcastToAPInt

3360 APInt IEEEFloat::bitcastToAPInt() const {  in bitcastToAPInt()  function in llvm::detail::IEEEFloat
3387 APInt api = bitcastToAPInt(); in convertToFloat()
3394 APInt api = bitcastToAPInt(); in convertToDouble()
4532 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in divide()
4534 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM); in divide()
4535 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4541 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in remainder()
4543 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in remainder()
4544 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4550 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in mod()
4551 auto Ret = Tmp.mod(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in mod()
4552 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
4561 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in fusedMultiplyAdd()
4563 APFloat(semPPCDoubleDoubleLegacy, Multiplicand.bitcastToAPInt()), in fusedMultiplyAdd()
4564 APFloat(semPPCDoubleDoubleLegacy, Addend.bitcastToAPInt()), RM); in fusedMultiplyAdd()
4565 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
4571 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in roundToIntegral()
4573 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
4665 APInt DoubleAPFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::DoubleAPFloat
4668 Floats[0].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4669 Floats[1].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4679 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
4685 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in next()
4687 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
4696 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToInteger()
4706 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
4717 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
4728 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
4737 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToHexString()
4774 APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in toString()
4780 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in getExactInverse()
4785 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
4856 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
4883 NID.Add(bitcastToAPInt()); in Profile()