Lines Matching refs:bitcastToAPInt

3617 APInt IEEEFloat::bitcastToAPInt() const {  in bitcastToAPInt()  function in llvm::detail::IEEEFloat
3662 APInt api = bitcastToAPInt(); in convertToFloat()
3669 APInt api = bitcastToAPInt(); in convertToDouble()
4853 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in divide()
4855 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM); in divide()
4856 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4862 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in remainder()
4864 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in remainder()
4865 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4871 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in mod()
4872 auto Ret = Tmp.mod(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in mod()
4873 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
4882 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in fusedMultiplyAdd()
4884 APFloat(semPPCDoubleDoubleLegacy, Multiplicand.bitcastToAPInt()), in fusedMultiplyAdd()
4885 APFloat(semPPCDoubleDoubleLegacy, Addend.bitcastToAPInt()), RM); in fusedMultiplyAdd()
4886 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
4892 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in roundToIntegral()
4894 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
4986 APInt DoubleAPFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::DoubleAPFloat
4989 Floats[0].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4990 Floats[1].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
5000 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
5006 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in next()
5008 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
5017 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToInteger()
5027 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
5038 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
5049 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
5058 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToHexString()
5104 APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in toString()
5110 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in getExactInverse()
5115 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
5209 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
5236 NID.Add(bitcastToAPInt()); in Profile()