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

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

Rev 148 Rev 158
/* @(#)w_gamma.c 5.1 93/09/24 */
/* @(#)w_gamma.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.
 * ====================================================
 * ====================================================
 */
 */
 
 
/* double gamma(double x)
/* double gamma(double x)
 * Return  the logarithm of the Gamma function of x or the Gamma function of x,
 * Return  the logarithm of the Gamma function of x or the Gamma function of x,
 * depending on the library mode.
 * depending on the library mode.
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
 
 
#ifdef __STDC__
#ifdef __STDC__
        double tgamma(double x)
        double tgamma(double x)
#else
#else
        double tgamma(x)
        double tgamma(x)
        double x;
        double x;
#endif
#endif
{
{
        double y;
        double y;
        int local_signgam;
        int local_signgam;
        y = __ieee754_gamma_r(x,&local_signgam);
        y = __ieee754_gamma_r(x,&local_signgam);
        if (local_signgam < 0) y = -y;
        if (local_signgam < 0) y = -y;
#ifdef _IEEE_LIBM
#ifdef _IEEE_LIBM
        return y;
        return y;
#else
#else
        if(_LIB_VERSION == _IEEE_) return y;
        if(_LIB_VERSION == _IEEE_) return y;
 
 
        if(!finite(y)&&finite(x)) {
        if(!finite(y)&&finite(x)) {
          if(floor(x)==x&&x<=0.0)
          if(floor(x)==x&&x<=0.0)
            return __kernel_standard(x,x,41); /* tgamma pole */
            return __kernel_standard(x,x,41); /* tgamma pole */
          else
          else
            return __kernel_standard(x,x,40); /* tgamma overflow */
            return __kernel_standard(x,x,40); /* tgamma overflow */
        }
        }
        return y;
        return y;
#endif
#endif
}
}
 
 

powered by: WebSVN 2.1.0

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