Lines Matching refs:isNegative
256 bool isNegative; in readExponent() local
266 isNegative = (*p == '-'); in readExponent()
291 if (isNegative) in readExponent()
2093 bool inputSign = isNegative(); in roundToIntegral()
2102 if (inputSign != isNegative()) in roundToIntegral()
2484 if (isSigned && api.isNegative()) { in convertFromAPInt()
3782 if (isNegative()) in toString()
3790 if (isNegative()) in toString()
3810 if (isNegative()) in toString()
4048 if (!isNegative()) in next()
4060 makeNaN(false, isNegative(), nullptr); in next()
4069 if (isSmallest() && isNegative()) { in next()
4077 if (isLargest() && !isNegative()) { in next()
4085 if (isNegative()) { in next()
4366 if (zz.isZero() && !zz.isNegative()) { in addImpl()
4405 LHS.isNegative() != RHS.isNegative()) { in addWithSpecial()
4406 Out.makeNaN(false, Out.isNegative(), nullptr); in addWithSpecial()
4589 auto Against = Floats[0].isNegative() ^ Floats[1].isNegative(); in compareAbsoluteValue()
4590 auto RHSAgainst = RHS.Floats[0].isNegative() ^ RHS.Floats[1].isNegative(); in compareAbsoluteValue()
4607 bool DoubleAPFloat::isNegative() const { return Floats[0].isNegative(); } in isNegative() function in llvm::detail::DoubleAPFloat
4752 Tmp.makeSmallest(this->isNegative()); in isSmallest()
4760 Tmp.makeLargest(this->isNegative()); in isLargest()