Searched refs:yisint (Results 1 – 3 of 3) sorted by relevance
| /src/lib/msun/src/ |
| H A D | e_pow.c | 101 int32_t i,j,k,yisint,n; in pow() local 125 yisint = 0; in pow() 127 if(iy>=0x43400000) yisint = 2; /* even integer y */ in pow() 132 if(((u_int32_t)j<<(52-k))==ly) yisint = 2-(j&1); in pow() 135 if((j<<(20-k))==iy) yisint = 2-(j&1); in pow() 167 if(((ix-0x3ff00000)|yisint)==0) { in pow() 169 } else if(yisint==1) in pow() 183 if((n|yisint)==0) return (x-x)/(x-x); in pow() 186 if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */ in pow()
|
| H A D | e_powf.c | 60 int32_t i,j,k,yisint,n; in powf() local 83 yisint = 0; in powf() 85 if(iy>=0x4b800000) yisint = 2; /* even integer y */ in powf() 89 if((j<<(23-k))==iy) yisint = 2-(j&1); in powf() 117 if(((ix-0x3f800000)|yisint)==0) { in powf() 119 } else if(yisint==1) in powf() 128 if((n|yisint)==0) return (x-x)/(x-x); in powf() 131 if((n|(yisint-1))==0) sn = -one;/* (-ve)**(odd int) */ in powf()
|
| /src/lib/msun/ld128/ |
| H A D | e_powl.c | 150 int32_t i, j, k, yisint, n; in powl() local 189 yisint = 0; in powl() 193 yisint = 2; /* even integer y */ in powl() 200 yisint = 2; in powl() 202 yisint = 1; in powl() 247 if (((ix - 0x3fff0000) | yisint) == 0) in powl() 251 else if (yisint == 1) in powl() 259 if (((((u_int32_t) hx >> 31) - 1) | yisint) == 0) in powl() 364 if (((((u_int32_t) hx >> 31) - 1) | (yisint - 1)) == 0) in powl()
|