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 58... |
Line 58... |
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) {
|
/* jn(|x|>X_TLOSS) */
|
/* jn(|x|>X_TLOSS) */
|
exc.type = TLOSS;
|
exc.type = TLOSS;
|
exc.name = "jn";
|
exc.name = "jn";
|
|
exc.err = 0;
|
|
exc.arg1 = n;
|
|
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 96... |
Line 99... |
|
|
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
|
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
|
#endif
|
#endif
|
exc.type = DOMAIN; /* should be SING for IEEE */
|
exc.type = DOMAIN; /* should be SING for IEEE */
|
exc.name = "yn";
|
exc.name = "yn";
|
|
exc.err = 0;
|
|
exc.arg1 = n;
|
|
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 113... |
Line 119... |
}
|
}
|
if(x>X_TLOSS) {
|
if(x>X_TLOSS) {
|
/* yn(x>X_TLOSS) */
|
/* yn(x>X_TLOSS) */
|
exc.type = TLOSS;
|
exc.type = TLOSS;
|
exc.name = "yn";
|
exc.name = "yn";
|
|
exc.err = 0;
|
|
exc.arg1 = n;
|
|
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.