Changeset 197d59d in mainline


Ignore:
Timestamp:
2021-06-18T16:06:03Z (3 years ago)
Author:
Maurizio Lombardi <mlombard@…>
Children:
ca113cf
Parents:
f250c5a
git-author:
Maurizio Lombardi <mlombard@…> (2018-11-25 16:47:56)
git-committer:
Maurizio Lombardi <mlombard@…> (2021-06-18 16:06:03)
Message:

math: sync pow() to FreeBSD 11.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/math/generic/pow.c

    rf250c5a r197d59d  
    136136                if(k>20) {
    137137                    j = ly>>(52-k);
    138                     if((j<<(52-k))==(int32_t)ly) yisint = 2-(j&1);
     138                    if((j<<(52-k))==ly) yisint = 2-(j&1);
    139139                } else if(ly==0) {
    140140                    j = iy>>(20-k);
     
    148148            if (iy==0x7ff00000) {       /* y is +-inf */
    149149                if(((ix-0x3ff00000)|lx)==0)
    150                     return  one;        /* (-1)**+-inf is NaN */
     150                    return  one;        /* (-1)**+-inf is 1 */
    151151                else if (ix >= 0x3ff00000)/* (|x|>1)**+-inf = inf,0 */
    152152                    return (hy>=0)? y: zero;
     
    157157                if(hy<0) return one/x; else return x;
    158158            }
    159             if(hy==0x40000000) return x*x;   /* y is  2 */
    160             if(hy==0x40080000) return x*x*x; /* y is  3 */
    161             if(hy==0x40100000) {             /* y is  4 */
    162                 u = x*x;
    163                 return u*u;
    164             }
    165             if(hy==0x3fe00000) {             /* y is  0.5 */
     159            if(hy==0x40000000) return x*x; /* y is  2 */
     160            if(hy==0x3fe00000) {        /* y is  0.5 */
    166161                if(hx>=0)       /* x >= +0 */
    167                     return sqrt(x);
     162                return sqrt(x);
    168163            }
    169164        }
     
    314309        if((j>>20)<=0) z = scalbn(z,n); /* subnormal output */
    315310        else SET_HIGH_WORD(z,j);
    316 
    317311        return s*z;
    318312}
Note: See TracChangeset for help on using the changeset viewer.