HomeSort by relevance Sort by last modified time
    Searched defs:sx (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_remainderf.c 29 u_int32_t sx; local
34 sx = hx&0x80000000;
63 SET_FLOAT_WORD(x,hx^sx);
s_rintf.c 34 int32_t i0,j0,sx; local
37 sx = (i0>>31)&1;
42 STRICT_ASSIGN(float,w,TWO23[sx]+x);
43 t = w-TWO23[sx];
45 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
48 STRICT_ASSIGN(float,w,TWO23[sx]+x);
49 return w-TWO23[sx];
e_remainder.c 38 u_int32_t sx,lx,lp; local
43 sx = hx&0x80000000;
73 SET_HIGH_WORD(x,hx^sx);
s_rint.c 40 int32_t i0,j0,sx; local
44 sx = (i0>>31)&1;
53 STRICT_ASSIGN(double,w,TWO52[sx]+x);
54 t = w-TWO52[sx];
56 SET_HIGH_WORD(t,(i0&0x7fffffff)|(sx<<31));
66 * w = TWO52[sx]+x, adjust the 0.25 bit to a lower
86 STRICT_ASSIGN(double,w,TWO52[sx]+x);
87 return w-TWO52[sx];
e_fmod.c 33 int32_t n,hx,hy,hz,ix,iy,sx,i; local
38 sx = hx&0x80000000; /* sign of x */
39 hx ^=sx; /* |x| */
49 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
103 return Zero[(u_int32_t)sx>>31];
112 return Zero[(u_int32_t)sx>>31];
119 INSERT_WORDS(x,hx|sx,lx);
126 lx = (hx<<(32-n))|(lx>>n); hx = sx;
128 lx = hx>>(n-32); hx = sx;
130 INSERT_WORDS(x,hx|sx,lx)
    [all...]
e_fmodf.c 33 int32_t n,hx,hy,hz,ix,iy,sx,i; local
37 sx = hx&0x80000000; /* sign of x */
38 hx ^=sx; /* |x| */
47 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
80 return Zero[(u_int32_t)sx>>31];
89 return Zero[(u_int32_t)sx>>31];
96 SET_FLOAT_WORD(x,hx|sx);
100 SET_FLOAT_WORD(x,hx|sx);
s_remquo.c 34 int32_t n,hx,hy,hz,ix,iy,sx,i; local
40 sx = hx&0x80000000; /* sign of x */
41 hx ^=sx; /* |x| */
55 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
119 return Zero[(u_int32_t)sx>>31];
151 SET_HIGH_WORD(x,hx^sx);
s_remquof.c 32 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);
e_fmodl.c 71 int ix,iy,n,sx; local
75 sx = ux.bits.sign;
91 return Zero[sx]; /* |x|=|y| return x*0*/
125 return Zero[sx];
134 return Zero[sx];
s_remquol.c 74 int ix,iy,n,q,sx,sxy; local
78 sx = ux.bits.sign;
79 sxy = sx ^ uy.bits.sign;
99 return Zero[sx]; /* |x|=|y| return x*0*/
141 return Zero[sx];
168 ux.bits.sign ^= sx;
  /external/clang/test/CXX/class/class.nest/
p1-cxx0x.cpp 5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
p1.cpp 7 static int sx; member in class:Outer
16 static char b[sizeof(sx)]; // okay
  /external/fdlibm/
e_remainder.c 40 unsigned sx,lx,lp; local
47 sx = hx&0x80000000;
75 __HI(x) ^= sx;
s_rint.c 43 int i0,j0,sx; local
47 sx = (i0>>31)&1;
57 w = TWO52[sx]+x;
58 t = w-TWO52[sx];
60 __HI(t) = (i0&0x7fffffff)|(sx<<31);
82 w = TWO52[sx]+x;
83 return w-TWO52[sx];
e_fmod.c 35 int n,hx,hy,hz,ix,iy,sx,i; local
42 sx = hx&0x80000000; /* sign of x */
43 hx ^=sx; /* |x| */
53 return Zero[(unsigned)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(unsigned)sx>>31];
116 return Zero[(unsigned)sx>>31];
123 __HI(x) = hx|sx;
131 lx = (hx<<(32-n))|(lx>>n); hx = sx;
133 lx = hx>>(n-32); hx = sx;
135 __HI(x) = hx|sx;
    [all...]
  /device/google/contexthub/firmware/lib/libm/
ef_fmod.c 37 __int32_t n,hx,hy,hz,ix,iy,sx,i; local
41 sx = hx&0x80000000; /* sign of x */
42 hx ^=sx; /* |x| */
52 return Zero[(__uint32_t)sx>>31]; /* |x|=|y| return x*0*/
87 return Zero[(__uint32_t)sx>>31];
96 return Zero[(__uint32_t)sx>>31];
103 SET_FLOAT_WORD(x,hx|sx);
109 SET_FLOAT_WORD(x,hx|sx);
ef_exp.c 50 __int32_t k = 0,xsb,sx; local
53 GET_FLOAT_WORD(sx,x);
54 xsb = (sx>>31)&1; /* sign bit of x */
55 hx = sx & 0x7fffffff; /* high word of |x| */
62 if(sx > FLT_UWORD_LOG_MAX)
64 if(sx < 0 && hx > FLT_UWORD_LOG_MIN)
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_fmod.c 37 int32_t n,hx,hy,hz,ix,iy,sx,i; local
42 sx = hx&0x80000000; /* sign of x */
43 hx ^=sx; /* |x| */
53 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(u_int32_t)sx>>31];
116 return Zero[(u_int32_t)sx>>31];
123 INSERT_WORDS(x,hx|sx,lx);
130 lx = (hx<<(32-n))|(lx>>n); hx = sx;
132 lx = hx>>(n-32); hx = sx;
134 INSERT_WORDS(x,hx|sx,lx);
    [all...]
  /external/python/cpython3/Modules/_decimal/tests/
bench.py 113 sx = str(x) variable
132 assert(sx == sy)
  /external/skia/src/gpu/
GrPathUtils.h 72 float sx = fM[0]; local
81 uv->fX = sx * xy->fX + kx * xy->fY + tx;
  /external/skia/tests/
CopySurfaceTest.cpp 159 int sx = x - dstOffset.fX; local
161 uint32_t s = srcPixels.get()[sy * kW + sx];
165 "0x%08x", x, y, s, sx, sy, r);
  /external/skqp/src/gpu/
GrPathUtils.h 72 float sx = fM[0]; local
81 uv->fX = sx * xy->fX + kx * xy->fY + tx;
  /external/skqp/tests/
CopySurfaceTest.cpp 161 int sx = x - dstOffset.fX; local
163 uint32_t s = srcPixels.get()[sy * kW + sx];
167 "0x%08x", x, y, s, sx, sy, r);
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
dmisc.c 118 ULong *bx, *bxe, q, *sx, *sxe; local
135 sx = S->x;
136 sxe = sx + --n;
149 ys = *sx++ * (ULLong)q + carry;
156 si = *sx++;
166 ys = *sx++ * q + carry;
174 while(sx <= sxe);
187 sx = S->x;
190 ys = *sx++ + carry;
197 si = *sx++
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
dmisc.c 117 ULong *bx, *bxe, q, *sx, *sxe; local
134 sx = S->x;
135 sxe = sx + --n;
148 ys = *sx++ * (ULLong)q + carry;
157 si = *sx++;
167 ys = *sx++ * q + carry;
175 while(sx <= sxe);
188 sx = S->x;
191 ys = *sx++ + carry;
200 si = *sx++;
    [all...]

Completed in 4727 milliseconds

1 2 3 4 5 6 7