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

123

/external/clang/test/CXX/class/class.nest/
H A Dp1-cxx0x.cpp5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
H A Dp1.cpp5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
/external/fdlibm/
H A De_remainder.c40 unsigned sx,lx,lp; local
47 sx = hx&0x80000000;
75 __HI(x) ^= sx;
H A Ds_rint.c43 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];
H A De_fmod.c35 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...]
/external/clang/test/CXX/class.access/class.protected/
H A Dp1.cpp7 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...]
/external/skia/tests/
H A DClampRangeTest.cpp108 SkFixed sx = rand.nextS() >> 1; local
110 SkFixed dx = (sx - fx) / count;
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DScaleTransformOperation.h34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) argument
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) argument
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) argument
71 : m_x(sx)
/external/webkit/Source/WebCore/svg/
H A DSVGTransform.cpp86 void SVGTransform::setScale(float sx, float sy) argument
93 m_matrix.scaleNonUniform(sx, sy);
H A DSVGMatrix.h57 SVGMatrix scaleNonUniform(double sx, double sy) argument
60 copy.scale(sx, sy);
/external/qemu/android/skin/
H A Dcomposer.c345 skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy ) argument
352 v->spos.x = sx;
H A Dscaler.c63 int sx, sy; /* source start position in 16.16 format */ member in struct:__anon7996
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);
106 skin_scaler_scale( SkinScaler* scaler, SDL_Surface* dst_surface, SDL_Surface* src_surface, int sx, int sy, int sw, int sh ) argument
H A Dsurface.c272 int sx; member in struct:__anon7997
345 int sx = src_rect->pos.x; local
353 sx -= x;
356 if (sx < 0) {
357 w += sx;
358 x -= sx;
359 sx = 0;
366 delta = (sx + w) - src->surface->w;
394 blit->sx = sx;
[all...]
/external/skia/gpu/src/
H A DFlingState.cpp58 void FlingState::reset(float sx, float sy) { argument
60 fDirection.set(sx, sy);
/external/skia/src/effects/
H A DSk1DPathEffect.cpp97 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/src/ports/
H A DSkFontHost_ascender.cpp69 SkScalar sx = m.getScaleX(); local
72 int ppemX = SkScalarRound(sx);
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.h93 void scale(float sx, float sy) argument
95 m_x *= sx;
H A DFloatPoint3D.h80 void scale(float sx, float sy, float sz) argument
82 m_x *= sx;
H A DFloatRect.cpp118 void FloatRect::scale(float sx, float sy) argument
120 m_location.setX(x() * sx);
122 m_size.setWidth(width() * sx);
/external/webkit/Source/WebKit/android/plugins/
H A DANPMatrixInterface.cpp84 static void anp_preScale(ANPMatrix* matrix, float sx, float sy) { argument
85 matrix->preScale(SkFloatToScalar(sx), SkFloatToScalar(sy));
88 static void anp_postScale(ANPMatrix* matrix, float sx, float sy) { argument
89 matrix->postScale(SkFloatToScalar(sx), SkFloatToScalar(sy));
H A DANPCanvasInterface.cpp51 static void anp_scale(ANPCanvas* canvas, float sx, float sy) { argument
52 canvas->skcanvas->scale(SkFloatToScalar(sx), SkFloatToScalar(sy));
/external/clang/test/SemaCXX/
H A Dclass.cpp9 sx = 0;
18 sx = 0;
46 sx = 0;
65 static int sx; member in class:C
/external/skia/src/core/
H A DSkStrokerPriv.cpp37 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/webkit/Source/WebCore/platform/graphics/android/
H A DImageAndroid.cpp167 float sx, float sy)
169 dst->set(SkScalarRound(SkFloatToScalar(src.x() * sx)),
171 SkScalarRound(SkFloatToScalar((src.x() + src.width()) * sx)),
166 round_scaled(SkIRect* dst, const WebCore::FloatRect& src, float sx, float sy) argument
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_view_tiled.c96 Evas_Coord sx, sy, sw, sh; local
98 sx = sr->x;
106 sr->dx, sr->dy, sx, sy, sw, sh);
107 ewk_view_repaint_add(sd->_priv, sx, sy, sw, sh);
111 if (sx + sw > vw)
112 sw = vw - sx;
124 sx -= abs(sr->dx);
128 ewk_view_repaint_add(sd->_priv, sx, sy, sw, sh);
140 int sx, sy; local
142 ewk_frame_scroll_pos_get(sd->main_frame, &sx,
[all...]

Completed in 1722 milliseconds

123