URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 39 |
Rev 56 |
Line 36... |
Line 36... |
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
|
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
|
if(fabs(x)>X_TLOSS) {
|
if(fabs(x)>X_TLOSS) {
|
/* j1(|x|>X_TLOSS) */
|
/* j1(|x|>X_TLOSS) */
|
exc.type = TLOSS;
|
exc.type = TLOSS;
|
exc.name = "j1";
|
exc.name = "j1";
|
|
exc.err = 0;
|
|
exc.arg1 = exc.arg2 = x;
|
exc.retval = 0.0;
|
exc.retval = 0.0;
|
if (_LIB_VERSION == _POSIX_)
|
if (_LIB_VERSION == _POSIX_)
|
errno = ERANGE;
|
errno = ERANGE;
|
else if (!matherr(&exc)) {
|
else if (!matherr(&exc)) {
|
errno = ERANGE;
|
errno = ERANGE;
|
Line 74... |
Line 76... |
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
|
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
|
#endif
|
#endif
|
/* y1(0) = -inf or y1(x<0) = NaN */
|
/* y1(0) = -inf or y1(x<0) = NaN */
|
exc.type = DOMAIN; /* should be SING for IEEE */
|
exc.type = DOMAIN; /* should be SING for IEEE */
|
exc.name = "y1";
|
exc.name = "y1";
|
|
exc.err = 0;
|
|
exc.arg1 = exc.arg2 = x;
|
if (_LIB_VERSION == _SVID_)
|
if (_LIB_VERSION == _SVID_)
|
exc.retval = -HUGE;
|
exc.retval = -HUGE;
|
else
|
else
|
exc.retval = -HUGE_VAL;
|
exc.retval = -HUGE_VAL;
|
if (_LIB_VERSION == _POSIX_)
|
if (_LIB_VERSION == _POSIX_)
|
Line 91... |
Line 95... |
}
|
}
|
if(x>X_TLOSS) {
|
if(x>X_TLOSS) {
|
/* y1(x>X_TLOSS) */
|
/* y1(x>X_TLOSS) */
|
exc.type = TLOSS;
|
exc.type = TLOSS;
|
exc.name = "y1";
|
exc.name = "y1";
|
|
exc.err = 0;
|
|
exc.arg1 = exc.arg2 = x;
|
exc.retval = 0.0;
|
exc.retval = 0.0;
|
if (_LIB_VERSION == _POSIX_)
|
if (_LIB_VERSION == _POSIX_)
|
errno = ERANGE;
|
errno = ERANGE;
|
else if (!matherr(&exc)) {
|
else if (!matherr(&exc)) {
|
errno = ERANGE;
|
errno = ERANGE;
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.