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

1 2 3 4 5

  /bionic/libm/src/
e_remainderf.c 30 u_int32_t sx; local
35 sx = hx&0x80000000;
63 SET_FLOAT_WORD(x,hx^sx);
e_remainder.c 37 u_int32_t sx,lx,lp; local
42 sx = hx&0x80000000;
71 SET_HIGH_WORD(x,hx^sx);
s_rint.c 39 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];
s_rintf.c 33 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];
e_fmod.c 32 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,lx)
    [all...]
e_fmodf.c 34 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);
s_remquo.c 32 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*/
116 return Zero[(u_int32_t)sx>>31];
130 lx = (hx<<(32-n))|(lx>>n); hx = sx;
132 lx = hx>>(n-32); hx = sx;
148 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*/
92 return Zero[(u_int32_t)sx>>31];
117 SET_FLOAT_WORD(x,hx^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 5 static int sx; member in class:Outer
11 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...]
  /frameworks/base/core/jni/android/opengl/
poly.h 35 float sx, sy, sz, sw; /* screen space position (sometimes homo.) */ member in struct:android::__anon14491
  /external/skia/src/effects/
Sk1DPathEffect.cpp 97 SkScalar sx = src[i].fX; local
100 meas.getPosTan(dist + sx, &pos, &tangent);
105 pt.set(sx, sy);
107 matrix.preTranslate(-sx, 0);
  /external/skia/tests/
ClampRangeTest.cpp 108 SkFixed sx = rand.nextS() >> 1; local
110 SkFixed dx = (sx - fx) / count;
  /cts/apps/CtsVerifier/lib/colorchecker/
grouping.h 45 void FloodFill(int sx,
52 stack.push_back(POS(sx,sy));
54 sx = stack.back().first;
60 for (x = sx-1; x >= 0; x--)
71 for (x = sx;x < pField->getWidth(); x++) {
126 int sx = width / 2, sy = height / 2; local
129 id = (*pField)(sy,sx);
133 FloodFill(sx, sy, id_no, id, pField, &new_pos);
139 sx = rand() % width;
141 if (pField->mask[sy][sx] == 0) {
    [all...]
  /external/clang/test/CXX/class.access/class.protected/
p1.cpp 7 static int sx; // expected-note 3 {{declared}} \ member in class:test0::A
19 (void) a.sx; // expected-error {{'sx' is a protected member}}
23 (void) b.sx; // expected-error {{'sx' is a protected member}}
27 (void) c.sx; // expected-error {{'sx' is a protected member}}
31 (void) d.sx; // expected-error {{'sx' is a private member}}
38 static int sx; member in class:test1::A
72 static int sx; member in class:test2::A
107 static int sx; member in class:test3::A
142 static int sx; \/\/ expected-note 3{{member is declared here}} member in class:test4::A
180 static int sx; \/\/ expected-note 3{{member is declared here}} member in class:test5::A
    [all...]
  /bootable/recovery/minui/
resources.c 141 int sx = x * 3; local
143 unsigned char r = pRow[sx];
144 unsigned char g = pRow[sx + 1];
145 unsigned char b = pRow[sx + 2];
  /external/qemu/android/skin/
scaler.c 63 int sx, sy; /* source start position in 16.16 format */ member in struct:__anon9477
88 int sx = srect->pos.x; local
99 drect->pos.x = (int)(sx * scale + scaler->xdisp);
101 drect->size.w = (int)(ceil((sx + sw) * scale + scaler->xdisp)) - drect->pos.x;
109 int sx,
131 op.rd.x = (int)(sx * scaler->scale + scaler->xdisp);
133 op.rd.w = (int)(ceil((sx + sw) * scaler->scale + scaler->xdisp)) - op.rd.x;
138 op.sx = (int)((op.rd.x - scaler->xdisp) * scaler->invscale * 65536);
  /external/skia/src/core/
SkStrokerPriv.cpp 37 SkScalar sx = SkScalarMul(nx, CUBIC_ARC_FACTOR); local
40 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
41 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
43 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
44 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /external/skia/src/ports/
SkFontHost_ascender.cpp 69 SkScalar sx = m.getScaleX(); local
72 int ppemX = SkScalarRound(sx);
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 225 float sx = 1.0f; local
230 sx = mFromX + ((mToX - mFromX) * interpolatedTime);
237 t.getMatrix().setScale(sx, sy);
239 t.getMatrix().setScale(sx, sy, scale * mPivotX, scale * mPivotY);
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 74 SkScalar sx = SkFloatToScalar(fx); local
79 c->drawBitmap(b, sx, sy, p);
  /frameworks/base/opengl/tests/gl_jni/jni/
gl_code.cpp 49 float sx = fy * upZ - fz * upY; local
55 float uy = sz * fx - sx * fz;
56 float uz = sx * fy - sy * fx;
59 m[0] = sx;

Completed in 6831 milliseconds

1 2 3 4 5