Searched refs:sy (Results 26 - 50 of 143) sorted by relevance

123456

/external/qemu/android/skin/
H A Dsurface.c273 int sy; member in struct:__anon10290
346 int sy = src_rect->pos.y; local
372 sy += y;
375 if (sy < 0) {
376 h += sy;
377 y -= sy;
378 sy = 0;
384 delta = (sy + h) - src->surface->h;
395 blit->sy = sy;
[all...]
H A Dcomposer.h97 extern SkinViewport* skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy );
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DSmoothFilter.java61 public FloatBuffer filter(float sx, float sy, float base, FloatBuffer buffer, int size) { argument
H A DOptimizedErode.java63 public FloatBuffer filter(float sx, float sy, float base, FloatBuffer buffer, int size) { argument
H A DThermalErodeFilter.java55 public FloatBuffer filter(float sx, float sy, float base, FloatBuffer buffer, int workSize) { argument
/external/skia/include/views/
H A DSkTouchGesture.h20 void reset(float sx, float sy);
/external/skia/src/utils/
H A DSkProxyCanvas.cpp41 bool SkProxyCanvas::scale(SkScalar sx, SkScalar sy) { argument
42 return fProxy->scale(sx, sy);
49 bool SkProxyCanvas::skew(SkScalar sx, SkScalar sy) { argument
50 return fProxy->skew(sx, sy);
/external/webkit/Source/WebCore/svg/
H A DSVGTransform.h59 void setScale(float sx, float sy);
H A DSVGTransform.cpp86 void SVGTransform::setScale(float sx, float sy) argument
93 m_matrix.scaleNonUniform(sx, sy);
/external/skia/include/core/
H A DSkMatrix.h175 /** Set the matrix to scale by sx and sy, with a pivot point at (px, py).
179 void setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
180 /** Set the matrix to scale by sx and sy.
182 void setScale(SkScalar sx, SkScalar sy);
204 /** Set the matrix to skew by sx and sy, with a pivot point at (px, py).
209 /** Set the matrix to skew by sx and sy.
223 M' = M * S(sx, sy, px, py)
225 bool preScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
227 M' = M * S(sx, sy)
229 bool preScale(SkScalar sx, SkScalar sy);
[all...]
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/
H A Dscrollbar.edc55 new Float:vy, Float:sy;
58 sy = getfarg(3);
61 set_drag_size(PART:"img.knob", 1.0, sy);
/external/skia/include/utils/
H A DSkDumpCanvas.h67 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
69 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
H A DSkNWayCanvas.h31 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
33 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
H A DSkProxyCanvas.h35 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
37 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
H A DSkMatrix44.h150 void setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
151 void preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
152 void postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
/external/skia/src/effects/
H A DSk1DPathEffect.cpp83 SkScalar sy = src[i].fY; local
90 pt.set(sx, sy);
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.h93 void scale(float sx, float sy) argument
96 m_y *= sy;
H A DFloatPoint3D.h80 void scale(float sx, float sy, float sz) argument
83 m_y *= sy;
H A DFloatRect.cpp118 void FloatRect::scale(float sx, float sy) argument
121 m_location.setY(y() * sy);
123 m_size.setHeight(height() * sy);
/external/clang/test/Parser/
H A Dcxx11-user-defined-literals.cpp64 S<u'y'_id> sy; variable
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DInstrumentedPlatformCanvas.h75 virtual bool scale(SkScalar sx, SkScalar sy) argument
78 return SkCanvas::scale(sx, sy);
87 virtual bool skew(SkScalar sx, SkScalar sy) argument
90 return SkCanvas::skew(sx, sy);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.idl38 void scale(in float sx, in float sy);
122 void drawImage(in HTMLImageElement image, in float sx, in float sy, in float sw, in float sh, in float dx, in float dy, in float dw, in float dh)
128 void drawImage(in HTMLCanvasElement canvas, in float sx, in float sy, in float sw, in float sh, in float dx, in float dy, in float dw, in float dh)
135 void drawImage(in HTMLVideoElement video, in float sx, in float sy, in float sw, in float sh, in float dx, in float dy, in float dw, in float dh)
139 in float sx, in float sy, in float sw, in float sh,
176 ImageData getImageData(in float sx, in float sy, in float sw, in float sh)
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageAndroid.cpp166 float sx, float sy)
169 SkScalarRound(SkFloatToScalar(src.y() * sy)),
171 SkScalarRound(SkFloatToScalar((src.y() + src.height()) * sy)));
165 round_scaled(SkIRect* dst, const WebCore::FloatRect& src, float sx, float sy) argument
/external/skia/src/core/
H A DSkPath.cpp620 SkScalar sy = SkScalarMul(ry, CUBIC_ARC_FACTOR); local
629 rect.fLeft, rect.fTop + ry - sy,
634 this->cubicTo(rect.fLeft, rect.fBottom - ry + sy,
641 rect.fRight, rect.fBottom - ry + sy,
646 this->cubicTo(rect.fRight, rect.fTop + ry - sy,
651 rect.fRight, rect.fTop + ry - sy,
656 this->cubicTo(rect.fRight, rect.fBottom - ry + sy,
663 rect.fLeft, rect.fBottom - ry + sy,
668 this->cubicTo(rect.fLeft, rect.fTop + ry - sy,
741 SkScalar sy
758 SkScalar sy = SkScalarMul(ry, SK_ScalarTanPIOver8); local
1773 int sy = sign(vec.fY); local
[all...]
/external/quake/quake/src/QW/client/
H A Dmathlib.c293 float sr, sp, sy, cr, cp, cy; local
296 sy = sin(angle);
306 forward[1] = cp*sy;
308 right[0] = (-1*sr*sp*cy+-1*cr*-sy);
309 right[1] = (-1*sr*sp*sy+-1*cr*cy);
311 up[0] = (cr*sp*cy+-sr*-sy);
312 up[1] = (cr*sp*sy+-sr*cy);

Completed in 625 milliseconds

123456