Searched defs:sx (Results 1 - 10 of 10) sorted by relevance

/bionic/libm/src/
H A De_remainderf.c30 u_int32_t sx; local
35 sx = hx&0x80000000;
63 SET_FLOAT_WORD(x,hx^sx);
H A Ds_rintf.c33 int32_t i0,j0,sx; local
36 sx = (i0>>31)&1;
41 w = TWO23[sx]+x;
42 t = w-TWO23[sx];
44 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
47 w = TWO23[sx]+x;
48 return w-TWO23[sx];
H A De_fmodf.c34 int32_t n,hx,hy,hz,ix,iy,sx,i; local
38 sx = hx&0x80000000; /* sign of x */
39 hx ^=sx; /* |x| */
48 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
81 return Zero[(u_int32_t)sx>>31];
90 return Zero[(u_int32_t)sx>>31];
97 SET_FLOAT_WORD(x,hx|sx);
101 SET_FLOAT_WORD(x,hx|sx);
H A De_remainder.c37 u_int32_t sx,lx,lp; local
42 sx = hx&0x80000000;
71 SET_HIGH_WORD(x,hx^sx);
H A Ds_remquof.c32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
38 sx = hx&0x80000000; /* sign of x */
39 hx ^=sx; /* |x| */
50 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
93 return Zero[(u_int32_t)sx>>31];
118 SET_FLOAT_WORD(x,hx^sx);
H A Ds_rint.c39 int32_t i0,j0,sx; local
43 sx = (i0>>31)&1;
52 w = TWO52[sx]+x;
53 t = w-TWO52[sx];
55 SET_HIGH_WORD(t,(i0&0x7fffffff)|(sx<<31));
65 * w = TWO52[sx]+x, adjust the 0.25 bit to a lower
85 *(volatile double *)&w = TWO52[sx]+x; /* clip any extra precision */
86 return w-TWO52[sx];
H A De_fmod.c32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
37 sx = hx&0x80000000; /* sign of x */
38 hx ^=sx; /* |x| */
48 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
102 return Zero[(u_int32_t)sx>>31];
111 return Zero[(u_int32_t)sx>>31];
118 INSERT_WORDS(x,hx|sx,lx);
125 lx = (hx<<(32-n))|(lx>>n); hx = sx;
127 lx = hx>>(n-32); hx = sx;
129 INSERT_WORDS(x,hx|sx,l
[all...]
H A Ds_remquo.c32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
38 sx = hx&0x80000000; /* sign of x */
39 hx ^=sx; /* |x| */
53 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
117 return Zero[(u_int32_t)sx>>31];
149 SET_HIGH_WORD(x,hx^sx);
/bionic/libc/stdlib/
H A Dstrtod.c1920 ULong *bx, *bxe, *sx, *sxe; local
1936 sx = S->x;
1937 sxe = sx + --n;
1950 si = *sx++;
1962 ys = *sx++ * q + carry;
1970 while(sx <= sxe);
1983 sx = S->x;
1986 si = *sx++;
1998 ys = *sx++ + carry;
2006 while(sx <
[all...]
/bionic/libc/kernel/common/linux/
H A Dfb.h355 __u32 sx; member in struct:fb_copyarea

Completed in 198 milliseconds