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

1 2 3 4 5 6 7

  /bionic/libm/src/
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];
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];
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);
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...]
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);
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);
e_remainder.c 37 u_int32_t sx,lx,lp; local
42 sx = hx&0x80000000;
71 SET_HIGH_WORD(x,hx^sx);
e_remainderf.c 30 u_int32_t sx; local
35 sx = hx&0x80000000;
63 SET_FLOAT_WORD(x,hx^sx);
  /external/fdlibm/
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...]
e_remainder.c 40 unsigned sx,lx,lp; local
47 sx = hx&0x80000000;
75 __HI(x) ^= sx;
  /frameworks/base/core/jni/android/opengl/
poly.h 35 float sx, sy, sz, sw; /* screen space position (sometimes homo.) */ member in struct:android::__anon8649
poly_clip.cpp 52 * s[index] is sx, sy, or sz (screen space x, y, or z).
82 wp = (float *)&q->vert[q->n].sx;
95 * using the homogeneous screen coordinates (sx, sy, sz, sw) of each vertex,
96 * testing if v->sx/v->sw > box->x0 and v->sx/v->sw < box->x1,
117 if (v->sx < -sw) x0out++; /* out on left */
118 if (v->sx > sw) x1out++; /* out on right */
142 if (x0out) CLIP_AND_SWAP(sx, -1.0f, -1.0f, p, q, r);
143 if (x1out) CLIP_AND_SWAP(sx, 1.0f, 1.0f, p, q, r);
  /external/webkit/WebCore/platform/graphics/transforms/
ScaleTransformOperation.h 34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type)
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type)
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type)
71 : m_x(sx)
AffineTransform.cpp 44 double sx = sqrt(m.a() * m.a() + m.b() * m.b()); local
52 sx = -sx;
58 m.scale(1.0 / sx, 1.0 / sy);
67 sr[0] = sx;
194 AffineTransform& AffineTransform::scale(double sx, double sy)
196 m_transform[0] *= sx;
197 m_transform[1] *= sx;
225 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy)
227 return scale(sx, sy)
    [all...]
  /external/openssl/crypto/x509v3/
v3_sxnet.c 70 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
104 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
111 v = ASN1_INTEGER_get(sx->version);
113 for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
114 id = sk_SXNETID_value(sx->ids, i);
135 SXNET *sx = NULL;
139 if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
142 return sx;
186 SXNET *sx = NULL;
198 if(!(sx = SXNET_new())) goto err
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 103 int sx = getScrollX();
104 sx += distanceX;
105 if (sx < 0) {
106 sx = 0;
108 if (sx + getWidth() > mTotalWidth) {
109 sx -= distanceX;
111 mTargetScrollX = sx;
112 scrollTo(sx, getScrollY());
221 int sx = getScrollX(); local
222 if (mTargetScrollX > sx) {
    [all...]
  /external/qemu/android/skin/
scaler.h 34 int sx,
scaler.c 63 int sx, sy; /* source start position in 16.16 format */ member in struct:__anon5733
87 int sx,
109 op.rd.x = (int)(sx * scaler->scale + scaler->xdisp);
111 op.rd.w = (int)(ceil((sx + sw) * scaler->scale + scaler->xdisp)) - op.rd.x;
116 op.sx = (int)((op.rd.x - scaler->xdisp) * scaler->invscale * 65536);
argb.h 235 int sx = op->sx; local
240 src_line += (sx >> 16)*4 + (sy >> 16)*src_pitch;
241 sx &= 0xffff;
248 int sx1 = sx;
329 int sx = op->sx; local
334 src_line += (sx >> 16)*4 + (sy >> 16)*src_pitch;
335 sx &= 0xffff;
342 int sx1 = sx;
464 int sx = op->sx; local
549 int sx = op->sx; local
801 int sx = op->sx; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 105 * Set the matrix to scale by sx and sy, with a pivot point at (px, py).
109 public void setScale(float sx, float sy, float px, float py) {
110 native_setScale(native_instance, sx, sy, px, py);
113 /** Set the matrix to scale by sx and sy. */
114 public void setScale(float sx, float sy) {
115 native_setScale(native_instance, sx, sy);
149 * Set the matrix to skew by sx and sy, with a pivot point at (px, py).
157 /** Set the matrix to skew by sx and sy. */
182 * M' = M * S(sx, sy, px, py)
184 public boolean preScale(float sx, float sy, float px, float py)
    [all...]
  /bootable/recovery/minui/
minui.h 36 void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy);
  /external/webkit/WebCore/svg/
SVGTransform.idl 40 void setScale(in float sx, in float sy);
  /external/skia/tests/
MathTest.cpp 205 SkScalar sx = rand.nextSScalar1(); local
206 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, sx) == sx);
207 REPORTER_ASSERT(reporter, SkScalarCopySign(sx, -sx) == -sx);
208 REPORTER_ASSERT(reporter, SkScalarCopySign(-sx, sx) == sx);
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 173 void SkMatrix::setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py) {
174 fMat[kMScaleX] = sx;
176 fMat[kMTransX] = px - SkScalarMul(sx, px);
186 void SkMatrix::setScale(SkScalar sx, SkScalar sy) {
187 fMat[kMScaleX] = sx;
198 bool SkMatrix::preScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py) {
200 m.setScale(sx, sy, px, py);
204 bool SkMatrix::preScale(SkScalar sx, SkScalar sy) {
206 m.setScale(sx, sy);
210 bool SkMatrix::postScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py)
408 SkScalar tx, sx = SkScalarDiv(dst.width(), src.width()); local
891 SkScalar sx = src->fX; local
913 SkScalar sx = src->fX; local
933 SkScalar sx = src->fX; local
    [all...]

Completed in 4655 milliseconds

1 2 3 4 5 6 7