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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libm/] [math/] [sf_cos.c] - Diff between revs 207 and 345

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

Rev 207 Rev 345
/* sf_cos.c -- float version of s_cos.c.
/* sf_cos.c -- float version of s_cos.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 one=1.0;
static const float one=1.0;
#else
#else
static float one=1.0;
static float one=1.0;
#endif
#endif
 
 
#ifdef __STDC__
#ifdef __STDC__
        float cosf(float x)
        float cosf(float x)
#else
#else
        float cosf(x)
        float cosf(x)
        float x;
        float x;
#endif
#endif
{
{
        float y[2],z=0.0;
        float y[2],z=0.0;
        __int32_t n,ix;
        __int32_t n,ix;
 
 
        GET_FLOAT_WORD(ix,x);
        GET_FLOAT_WORD(ix,x);
 
 
    /* |x| ~< pi/4 */
    /* |x| ~< pi/4 */
        ix &= 0x7fffffff;
        ix &= 0x7fffffff;
        if(ix <= 0x3f490fd8) return __kernel_cosf(x,z);
        if(ix <= 0x3f490fd8) return __kernel_cosf(x,z);
 
 
    /* cos(Inf or NaN) is NaN */
    /* cos(Inf or NaN) is NaN */
        else if (!FLT_UWORD_IS_FINITE(ix)) return x-x;
        else if (!FLT_UWORD_IS_FINITE(ix)) return x-x;
 
 
    /* argument reduction needed */
    /* argument reduction needed */
        else {
        else {
            n = __ieee754_rem_pio2f(x,y);
            n = __ieee754_rem_pio2f(x,y);
            switch(n&3) {
            switch(n&3) {
                case 0: return  __kernel_cosf(y[0],y[1]);
                case 0: return  __kernel_cosf(y[0],y[1]);
                case 1: return -__kernel_sinf(y[0],y[1],1);
                case 1: return -__kernel_sinf(y[0],y[1],1);
                case 2: return -__kernel_cosf(y[0],y[1]);
                case 2: return -__kernel_cosf(y[0],y[1]);
                default:
                default:
                        return  __kernel_sinf(y[0],y[1],1);
                        return  __kernel_sinf(y[0],y[1],1);
            }
            }
        }
        }
}
}
 
 
#ifdef _DOUBLE_IS_32BITS
#ifdef _DOUBLE_IS_32BITS
 
 
#ifdef __STDC__
#ifdef __STDC__
        double cos(double x)
        double cos(double x)
#else
#else
        double cos(x)
        double cos(x)
        double x;
        double x;
#endif
#endif
{
{
        return (double) cosf((float) x);
        return (double) cosf((float) x);
}
}
 
 
#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.