OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libm/] [common/] [s_nextafter.c] - Diff between revs 57 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 57 Rev 1765
 
 
/* @(#)s_nextafter.c 5.1 93/09/24 */
/* @(#)s_nextafter.c 5.1 93/09/24 */
/*
/*
 * ====================================================
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
 *
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Permission to use, copy, modify, and distribute this
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice
 * software is freely granted, provided that this notice
 * is preserved.
 * is preserved.
 * ====================================================
 * ====================================================
 */
 */
 
 
/*
/*
FUNCTION
FUNCTION
       <<nextafter>>, <<nextafterf>>---get next number
       <<nextafter>>, <<nextafterf>>---get next number
 
 
INDEX
INDEX
        nextafter
        nextafter
INDEX
INDEX
        nextafterf
        nextafterf
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
       #include <math.h>
       #include <math.h>
       double nextafter(double <[val]>, double <[dir]>);
       double nextafter(double <[val]>, double <[dir]>);
       float nextafterf(float <[val]>, float <[dir]>);
       float nextafterf(float <[val]>, float <[dir]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
       #include <math.h>
       #include <math.h>
 
 
       double nextafter(<[val]>, <[dir]>)
       double nextafter(<[val]>, <[dir]>)
              double <[val]>;
              double <[val]>;
              double <[exp]>;
              double <[exp]>;
 
 
       float nextafter(<[val]>, <[dir]>)
       float nextafter(<[val]>, <[dir]>)
              float <[val]>;
              float <[val]>;
              float <[dir]>;
              float <[dir]>;
 
 
 
 
DESCRIPTION
DESCRIPTION
<<nextafter>> returns the double) precision floating point number
<<nextafter>> returns the double) precision floating point number
closest to <[val]> in the direction toward <[dir]>.  <<nextafterf>>
closest to <[val]> in the direction toward <[dir]>.  <<nextafterf>>
performs the same operation in single precision.  For example,
performs the same operation in single precision.  For example,
<<nextafter(0.0,1.0)>> returns the smallest positive number which is
<<nextafter(0.0,1.0)>> returns the smallest positive number which is
representable in double precision.
representable in double precision.
 
 
RETURNS
RETURNS
Returns the next closest number to <[val]> in the direction toward
Returns the next closest number to <[val]> in the direction toward
<[dir]>.
<[dir]>.
 
 
PORTABILITY
PORTABILITY
        Neither <<nextafter>> nor <<nextafterf>> is required by ANSI C
        Neither <<nextafter>> nor <<nextafterf>> is required by ANSI C
        or by the System V Interface Definition (Issue 2).
        or by the System V Interface Definition (Issue 2).
*/
*/
 
 
/* IEEE functions
/* IEEE functions
 *      nextafter(x,y)
 *      nextafter(x,y)
 *      return the next machine floating-point number of x in the
 *      return the next machine floating-point number of x in the
 *      direction toward y.
 *      direction toward y.
 *   Special cases:
 *   Special cases:
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
 
 
#ifndef _DOUBLE_IS_32BITS
#ifndef _DOUBLE_IS_32BITS
 
 
#ifdef __STDC__
#ifdef __STDC__
        double nextafter(double x, double y)
        double nextafter(double x, double y)
#else
#else
        double nextafter(x,y)
        double nextafter(x,y)
        double x,y;
        double x,y;
#endif
#endif
{
{
        __int32_t       hx,hy,ix,iy;
        __int32_t       hx,hy,ix,iy;
        __uint32_t lx,ly;
        __uint32_t lx,ly;
 
 
        EXTRACT_WORDS(hx,lx,x);
        EXTRACT_WORDS(hx,lx,x);
        EXTRACT_WORDS(hy,ly,y);
        EXTRACT_WORDS(hy,ly,y);
        ix = hx&0x7fffffff;             /* |x| */
        ix = hx&0x7fffffff;             /* |x| */
        iy = hy&0x7fffffff;             /* |y| */
        iy = hy&0x7fffffff;             /* |y| */
 
 
        if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) ||   /* x is nan */
        if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) ||   /* x is nan */
           ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0))     /* y is nan */
           ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0))     /* y is nan */
           return x+y;
           return x+y;
        if(x==y) return x;              /* x=y, return x */
        if(x==y) return x;              /* x=y, return x */
        if((ix|lx)==0) {                 /* x == 0 */
        if((ix|lx)==0) {                 /* x == 0 */
            INSERT_WORDS(x,hy&0x80000000,1);    /* return +-minsubnormal */
            INSERT_WORDS(x,hy&0x80000000,1);    /* return +-minsubnormal */
            y = x*x;
            y = x*x;
            if(y==x) return y; else return x;   /* raise underflow flag */
            if(y==x) return y; else return x;   /* raise underflow flag */
        }
        }
        if(hx>=0) {                              /* x > 0 */
        if(hx>=0) {                              /* x > 0 */
            if(hx>hy||((hx==hy)&&(lx>ly))) {    /* x > y, x -= ulp */
            if(hx>hy||((hx==hy)&&(lx>ly))) {    /* x > y, x -= ulp */
                if(lx==0) hx -= 1;
                if(lx==0) hx -= 1;
                lx -= 1;
                lx -= 1;
            } else {                            /* x < y, x += ulp */
            } else {                            /* x < y, x += ulp */
                lx += 1;
                lx += 1;
                if(lx==0) hx += 1;
                if(lx==0) hx += 1;
            }
            }
        } else {                                /* x < 0 */
        } else {                                /* x < 0 */
            if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
            if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
                if(lx==0) hx -= 1;
                if(lx==0) hx -= 1;
                lx -= 1;
                lx -= 1;
            } else {                            /* x > y, x += ulp */
            } else {                            /* x > y, x += ulp */
                lx += 1;
                lx += 1;
                if(lx==0) hx += 1;
                if(lx==0) hx += 1;
            }
            }
        }
        }
        hy = hx&0x7ff00000;
        hy = hx&0x7ff00000;
        if(hy>=0x7ff00000) return x+x;  /* overflow  */
        if(hy>=0x7ff00000) return x+x;  /* overflow  */
        if(hy<0x00100000) {             /* underflow */
        if(hy<0x00100000) {             /* underflow */
            y = x*x;
            y = x*x;
            if(y!=x) {          /* raise underflow flag */
            if(y!=x) {          /* raise underflow flag */
                INSERT_WORDS(y,hx,lx);
                INSERT_WORDS(y,hx,lx);
                return y;
                return y;
            }
            }
        }
        }
        INSERT_WORDS(x,hx,lx);
        INSERT_WORDS(x,hx,lx);
        return x;
        return x;
}
}
 
 
#endif /* _DOUBLE_IS_32BITS */
#endif /* _DOUBLE_IS_32BITS */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.