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/] [math/] [ef_acosh.c] - Diff between revs 148 and 158

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

Rev 148 Rev 158
/* ef_acosh.c -- float version of e_acosh.c.
/* ef_acosh.c -- float version of e_acosh.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
one     = 1.0,
one     = 1.0,
ln2     = 6.9314718246e-01;  /* 0x3f317218 */
ln2     = 6.9314718246e-01;  /* 0x3f317218 */
 
 
#ifdef __STDC__
#ifdef __STDC__
        float __ieee754_acoshf(float x)
        float __ieee754_acoshf(float x)
#else
#else
        float __ieee754_acoshf(x)
        float __ieee754_acoshf(x)
        float x;
        float x;
#endif
#endif
{
{
        float t;
        float t;
        __int32_t hx;
        __int32_t hx;
        GET_FLOAT_WORD(hx,x);
        GET_FLOAT_WORD(hx,x);
        if(hx<0x3f800000) {             /* x < 1 */
        if(hx<0x3f800000) {             /* x < 1 */
            return (x-x)/(x-x);
            return (x-x)/(x-x);
        } else if(hx >=0x4d800000) {    /* x > 2**28 */
        } else if(hx >=0x4d800000) {    /* x > 2**28 */
            if(!FLT_UWORD_IS_FINITE(hx)) {      /* x is inf of NaN */
            if(!FLT_UWORD_IS_FINITE(hx)) {      /* x is inf of NaN */
                return x+x;
                return x+x;
            } else
            } else
                return __ieee754_logf(x)+ln2;   /* acosh(huge)=log(2x) */
                return __ieee754_logf(x)+ln2;   /* acosh(huge)=log(2x) */
        } else if (hx==0x3f800000) {
        } else if (hx==0x3f800000) {
            return 0.0;                 /* acosh(1) = 0 */
            return 0.0;                 /* acosh(1) = 0 */
        } else if (hx > 0x40000000) {   /* 2**28 > x > 2 */
        } else if (hx > 0x40000000) {   /* 2**28 > x > 2 */
            t=x*x;
            t=x*x;
            return __ieee754_logf((float)2.0*x-one/(x+__ieee754_sqrtf(t-one)));
            return __ieee754_logf((float)2.0*x-one/(x+__ieee754_sqrtf(t-one)));
        } else {                        /* 1<x<2 */
        } else {                        /* 1<x<2 */
            t = x-one;
            t = x-one;
            return log1pf(t+__ieee754_sqrtf((float)2.0*t+t*t));
            return log1pf(t+__ieee754_sqrtf((float)2.0*t+t*t));
        }
        }
}
}
 
 

powered by: WebSVN 2.1.0

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