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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libm/] [math/] [wr_lgamma.c] - Blame information for rev 39

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 39 lampret
 
2
/* @(#)wr_lgamma.c 5.1 93/09/24 */
3
/*
4
 * ====================================================
5
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6
 *
7
 * Developed at SunPro, a Sun Microsystems, Inc. business.
8
 * Permission to use, copy, modify, and distribute this
9
 * software is freely granted, provided that this notice
10
 * is preserved.
11
 * ====================================================
12
 */
13
 
14
/*
15
 * wrapper double lgamma_r(double x, int *signgamp)
16
 */
17
 
18
#include "fdlibm.h"
19
#include <errno.h>
20
 
21
#ifndef _DOUBLE_IS_32BITS
22
 
23
#ifdef __STDC__
24
        double lgamma_r(double x, int *signgamp) /* wrapper lgamma_r */
25
#else
26
        double lgamma_r(x,signgamp)              /* wrapper lgamma_r */
27
        double x; int *signgamp;
28
#endif
29
{
30
#ifdef _IEEE_LIBM
31
        return __ieee754_lgamma_r(x,signgamp);
32
#else
33
        double y;
34
        struct exception exc;
35
        y = __ieee754_lgamma_r(x,signgamp);
36
        if(_LIB_VERSION == _IEEE_) return y;
37
        if(!finite(y)&&finite(x)) {
38
#ifndef HUGE_VAL 
39
#define HUGE_VAL inf
40
            double inf = 0.0;
41
 
42
            SET_HIGH_WORD(inf,0x7ff00000);      /* set inf to infinite */
43
#endif
44
            exc.name = "lgamma";
45
            if (_LIB_VERSION == _SVID_)
46
               exc.retval = HUGE;
47
            else
48
               exc.retval = HUGE_VAL;
49
            if(floor(x)==x&&x<=0.0) {
50
                /* lgamma(-integer) */
51
                exc.type = SING;
52
                if (_LIB_VERSION == _POSIX_)
53
                   errno = EDOM;
54
                else if (!matherr(&exc)) {
55
                   errno = EDOM;
56
                }
57
 
58
            } else {
59
                /* lgamma(finite) overflow */
60
                exc.type = OVERFLOW;
61
                if (_LIB_VERSION == _POSIX_)
62
                   errno = ERANGE;
63
                else if (!matherr(&exc)) {
64
                   errno = ERANGE;
65
                }
66
            }
67
            if (exc.err != 0)
68
               errno = exc.err;
69
            return exc.retval;
70
        } else
71
            return y;
72
#endif
73
}
74
 
75
#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.