Home | History | Annotate | Download | only in Support

Lines Matching refs:nextDown

3810 /// IEEE-754R 2008 5.3.1: nextUp/nextDown.
3812 nextDown(x) = -nextUp(-x), we only implement nextUp with
3814 APFloat::opStatus APFloat::next(bool nextDown) {
3815 // If we are performing nextDown, swap sign so we have -x.
3816 if (nextDown)
3923 // If we are performing nextDown, swap sign so we have -nextUp(-x)
3924 if (nextDown)