Searched defs:ix (Results 76 - 79 of 79) sorted by relevance

1234

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_pow.c102 int32_t hx,hy,ix,iy; local
107 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
116 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
143 if(((ix-0x3ff00000)|lx)==0)
145 else if (ix >= 0x3ff00000)/* (|x|>1)**+-inf = inf,0 */
163 if(ix==0x7ff00000||ix==0||ix==0x3ff00000){
167 if(((ix
[all...]
H A Ds_erf.c199 int32_t hx,ix,i; local
202 ix = hx&0x7fffffff;
203 if(ix>=0x7ff00000) { /* erf(nan)=nan */
208 if(ix < 0x3feb0000) { /* |x|<0.84375 */
209 if(ix < 0x3e300000) { /* |x|<2**-28 */
210 if (ix < 0x00800000)
220 if(ix < 0x3ff40000) { /* 0.84375 <= |x| < 1.25 */
226 if (ix >= 0x40180000) { /* inf>|x|>=6 */
231 if(ix< 0x4006DB6E) { /* |x| < 1/0.35 */
252 int32_t hx,ix; local
[all...]
H A De_lgamma_r.c206 int i,ix,lx; local
212 ix = hx&0x7fffffff;
213 if(ix>=0x7ff00000) return x*x;
217 if(ix<0x3c700000) { /* |x|<2**-56, return -log(|x|) */
218 if((ix|lx)==0)
226 if(ix>=0x43300000) /* |x|>=2**52, must be -integer */
236 if((((ix-0x3ff00000)|lx)==0)||(((ix-0x40000000)|lx)==0)) r = 0;
238 else if(ix<0x40000000) {
239 if(ix<
[all...]
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A De_lgammal_r.c230 uint16_t hx,ix; local
236 ix = hx&0x7fff;
237 if(ix==0x7fff) return x*x;
241 if(ix<0x3fff-116) { /* |x|<2**-(p+3), return -log(|x|) */
242 if((ix|lx|llx)==0)
250 if(ix>=0x3fff+112) /* |x|>=2**(p-1), must be -integer */
260 if((ix==0x3fff || ix==0x4000) && (lx|llx)==0) r = 0;
262 else if(ix<0x4000) {
299 else if(ix<
[all...]

Completed in 88 milliseconds

1234