Lines Matching refs:bitcastToAPInt
2996 APInt IEEEFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::IEEEFloat
3020 APInt api = bitcastToAPInt(); in convertToFloat()
3027 APInt api = bitcastToAPInt(); in convertToDouble()
4138 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in divide()
4140 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM); in divide()
4141 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4147 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in remainder()
4149 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in remainder()
4150 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
4156 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in mod()
4157 auto Ret = Tmp.mod(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in mod()
4158 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in mod()
4167 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in fusedMultiplyAdd()
4169 APFloat(semPPCDoubleDoubleLegacy, Multiplicand.bitcastToAPInt()), in fusedMultiplyAdd()
4170 APFloat(semPPCDoubleDoubleLegacy, Addend.bitcastToAPInt()), RM); in fusedMultiplyAdd()
4171 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in fusedMultiplyAdd()
4177 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in roundToIntegral()
4179 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in roundToIntegral()
4271 APInt DoubleAPFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::DoubleAPFloat
4274 Floats[0].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4275 Floats[1].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4285 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromString()
4291 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in next()
4293 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in next()
4302 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToInteger()
4312 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromAPInt()
4323 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromSignExtendedInteger()
4334 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in convertFromZeroExtendedInteger()
4343 return APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in convertToHexString()
4380 APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in toString()
4386 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in getExactInverse()
4391 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt()); in getExactInverse()
4457 *this = APFloat(ToSemantics, U.IEEE.bitcastToAPInt()); in convert()
4502 NID.Add(bitcastToAPInt()); in Profile()