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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libm/] [common/] [sf_scalbln.c] - Diff between revs 148 and 158

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 148 Rev 158
/* s_scalbnf.c -- float version of s_scalbn.c.
/* s_scalbnf.c -- float version of s_scalbn.c.
 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
 */
 */
 
 
/*
/*
 * ====================================================
 * ====================================================
 * 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.
 * ====================================================
 * ====================================================
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
 
 
#ifdef __STDC__
#ifdef __STDC__
static const float
static const float
#else
#else
static float
static float
#endif
#endif
two25   =  3.355443200e+07,     /* 0x4c000000 */
two25   =  3.355443200e+07,     /* 0x4c000000 */
twom25  =  2.9802322388e-08,    /* 0x33000000 */
twom25  =  2.9802322388e-08,    /* 0x33000000 */
huge   = 1.0e+30,
huge   = 1.0e+30,
tiny   = 1.0e-30;
tiny   = 1.0e-30;
 
 
#ifdef __STDC__
#ifdef __STDC__
        float scalblnf (float x, long int n)
        float scalblnf (float x, long int n)
#else
#else
        float scalblnf (x,n)
        float scalblnf (x,n)
        float x; long int n;
        float x; long int n;
#endif
#endif
{
{
        __int32_t k,ix;
        __int32_t k,ix;
        GET_FLOAT_WORD(ix,x);
        GET_FLOAT_WORD(ix,x);
        k = (ix&0x7f800000)>>23;                /* extract exponent */
        k = (ix&0x7f800000)>>23;                /* extract exponent */
        if (k==0) {                              /* 0 or subnormal x */
        if (k==0) {                              /* 0 or subnormal x */
            if ((ix&0x7fffffff)==0) return x; /* +-0 */
            if ((ix&0x7fffffff)==0) return x; /* +-0 */
            x *= two25;
            x *= two25;
            GET_FLOAT_WORD(ix,x);
            GET_FLOAT_WORD(ix,x);
            k = ((ix&0x7f800000)>>23) - 25;
            k = ((ix&0x7f800000)>>23) - 25;
            }
            }
        if (k==0xff) return x+x;                /* NaN or Inf */
        if (k==0xff) return x+x;                /* NaN or Inf */
        k = k+n;
        k = k+n;
        if (n> 50000 || k >  0xfe)
        if (n> 50000 || k >  0xfe)
          return huge*copysignf(huge,x); /* overflow  */
          return huge*copysignf(huge,x); /* overflow  */
        if (n< -50000)
        if (n< -50000)
          return tiny*copysignf(tiny,x);        /*underflow*/
          return tiny*copysignf(tiny,x);        /*underflow*/
        if (k > 0)                               /* normal result */
        if (k > 0)                               /* normal result */
            {SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23)); return x;}
            {SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23)); return x;}
        if (k <= -25)
        if (k <= -25)
            return tiny*copysignf(tiny,x);      /*underflow*/
            return tiny*copysignf(tiny,x);      /*underflow*/
        k += 25;                                /* subnormal result */
        k += 25;                                /* subnormal result */
        SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23));
        SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23));
        return x*twom25;
        return x*twom25;
}
}
 
 
#ifdef _DOUBLE_IS_32BITS
#ifdef _DOUBLE_IS_32BITS
 
 
#ifdef __STDC__
#ifdef __STDC__
        double scalbln (double x, long int n)
        double scalbln (double x, long int n)
#else
#else
        double scalbln (x,n)
        double scalbln (x,n)
        double x; long int n;
        double x; long int n;
#endif
#endif
{
{
        return (double) scalblnf((float) x, n);
        return (double) scalblnf((float) x, n);
}
}
 
 
#endif /* defined(_DOUBLE_IS_32BITS) */
#endif /* defined(_DOUBLE_IS_32BITS) */
 
 

powered by: WebSVN 2.1.0

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