Lines Matching refs:bitcastToAPInt

3670 APInt IEEEFloat::bitcastToAPInt() const {  in bitcastToAPInt()  function in llvm::detail::IEEEFloat
3727 APInt api = bitcastToAPInt(); in convertToFloat()
3734 APInt api = bitcastToAPInt(); in convertToDouble()
3742 APInt api = bitcastToAPInt(); in convertToQuad()
4974 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in divide()
4976 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM); in divide()
4977 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4983 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in remainder()
4985 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in remainder()
4986 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4992 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in mod()
4993 auto Ret = Tmp.mod(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in mod()
4994 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
5003 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in fusedMultiplyAdd()
5005 APFloat(semPPCDoubleDoubleLegacy, Multiplicand.bitcastToAPInt()), in fusedMultiplyAdd()
5006 APFloat(semPPCDoubleDoubleLegacy, Addend.bitcastToAPInt()), RM); in fusedMultiplyAdd()
5007 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
5013 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in roundToIntegral()
5015 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
5107 APInt DoubleAPFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::DoubleAPFloat
5110 Floats[0].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
5111 Floats[1].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
5121 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
5127 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in next()
5129 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
5138 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToInteger()
5148 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
5159 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
5170 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
5179 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToHexString()
5225 APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in toString()
5231 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in getExactInverse()
5236 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
5330 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
5357 NID.Add(bitcastToAPInt()); in Profile()