HomeSort by relevance Sort by last modified time
    Searched refs:sy (Results 26 - 50 of 483) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkMatrix.cpp 173 SkScalar sy = fMat[kMSkewY]; local
175 if (is_degenerate_2x2(mx, sx, sy, my)) {
182 vec[1].set(sy, my);
205 SkScalar sy = fMat[kMSkewY]; local
207 if (is_degenerate_2x2(mx, sx, sy, my)) {
214 vec[1].set(sy, my);
285 void SkMatrix::setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py) {
286 if (1 == sx && 1 == sy) {
290 fMat[kMScaleY] = sy;
292 fMat[kMTransY] = py - sy * py
539 SkScalar ty, sy = dst.height() \/ src.height(); local
930 SkScalar sy = src->fY; local
952 SkScalar sy = src->fY; local
973 SkScalar sy = src->fY; local
1029 SkScalar sy = src[1]; local
    [all...]
SkMatrixClipStateMgr.h 70 void preScale(SkScalar sx, SkScalar sy) {
72 fMatrix.preScale(sx, sy);
80 void preSkew(SkScalar sx, SkScalar sy) {
82 fMatrix.preSkew(sx, sy);
293 void scale(SkScalar sx, SkScalar sy) {
295 fCurMCState->fMatrixInfo->preScale(sx, sy);
303 void skew(SkScalar sx, SkScalar sy) {
305 fCurMCState->fMatrixInfo->preSkew(sx, sy);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransform.idl 42 [RaisesException] void setScale(float sx, float sy);
SVGTransformTearOff.cpp 80 void SVGTransformTearOff::setScale(float sx, float sy, ExceptionState& exceptionState)
87 target()->setScale(sx, sy);
  /external/llvm/test/MC/ARM/
thumb-only-conditionals.s 10 @ CHECK-NEXT: isbne sy
17 @ CHECK-NEXT: dmble sy
18 @ CHECK-NEXT: dsbgt sy
19 @ CHECK-NEXT: isble sy
  /external/qemu/android/skin/
scaler.c 63 int sx, sy; /* source start position in 16.16 format */ member in struct:__anon32911
89 int sy = srect->pos.y; local
100 drect->pos.y = (int)(sy * scale + scaler->ydisp);
102 drect->size.h = (int)(ceil((sy + sh) * scale + scaler->ydisp)) - drect->pos.y;
110 int sy,
132 op.rd.y = (int)(sy * scaler->scale + scaler->ydisp);
134 op.rd.h = (int)(ceil((sy + sh) * scaler->scale + scaler->ydisp)) - op.rd.y;
139 op.sy = (int)((op.rd.y - scaler->ydisp) * scaler->invscale * 65536);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrix.java 61 public boolean postScale(float sx, float sy, float px, float py) {
63 scaleY *= sy;
ShadowCanvas.java 51 public void scale(float sx, float sy) {
53 this.scaleY = sy;
57 public void scale(float sx, float sy, float px, float py) {
59 this.scaleY = sy;
  /packages/apps/Gallery2/jni/filters/
redEyeMath.c 39 int sy = (recY + y) * iw; local
41 int p = (recX + x + sy) * 4;
60 int sy = (recY + y) * iw; local
62 int p = (recX + x + sy) * 4;
78 int sy = (recY + y) * iw; local
80 int p = (recX + x + sy) * 4;
138 int sy = (recY + y) * iw; local
140 int p = (recX + x + sy) * 4;
  /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
ImageBitmapFactories.cpp 87 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLImageElement* image, int sx, int sy, int sw, int sh, ExceptionState& exceptionState)
113 return fulfillImageBitmap(scriptState, ImageBitmap::create(image, IntRect(sx, sy, sw, sh)));
122 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLVideoElement* video, int sx, int sy, int sw, int sh, ExceptionState& exceptionState)
150 return fulfillImageBitmap(scriptState, ImageBitmap::create(video, IntRect(sx, sy, sw, sh)));
158 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, CanvasRenderingContext2D* context, int sx, int sy, int sw, int sh, ExceptionState& exceptionState)
160 return createImageBitmap(scriptState, eventTarget, context->canvas(), sx, sy, sw, sh, exceptionState);
168 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLCanvasElement* canvas, int sx, int sy, int sw, int sh, ExceptionState& exceptionState)
183 return fulfillImageBitmap(scriptState, canvas->buffer() ? ImageBitmap::create(canvas, IntRect(sx, sy, sw, sh)) : nullptr);
195 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, Blob* blob, int sx, int sy, int sw, int sh, ExceptionState& exceptionState)
201 ImageBitmapLoader* loader = ImageBitmapFactories::ImageBitmapLoader::create(from(eventTarget), IntRect(sx, sy, sw, sh), scriptState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
AffineTransform.cpp 155 AffineTransform& AffineTransform::scale(double sx, double sy)
159 m_transform[2] *= sy;
160 m_transform[3] *= sy;
178 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy)
180 return scale(sx, sy);
198 AffineTransform& AffineTransform::shear(double sx, double sy)
203 m_transform[0] += sy * m_transform[2];
204 m_transform[1] += sy * m_transform[3];
363 double sy = yScale(); local
372 sy = -sy
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_copypix.c 103 GLint sy, dy, stepy, row; local
125 sy = srcy + height - 1;
131 sy = srcy;
151 width, srcx, sy + row, p );
163 for (row = 0; row < height; row++, sy += stepy, dy += stepy) {
175 width, srcx, sy, rgba );
250 GLint sy, dy, stepy; local
276 sy = srcy + height - 1;
282 sy = srcy;
288 GLint ssy = sy;
351 GLint sy, dy, stepy; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_copypix.c 103 GLint sy, dy, stepy, row; local
125 sy = srcy + height - 1;
131 sy = srcy;
151 width, srcx, sy + row, p );
163 for (row = 0; row < height; row++, sy += stepy, dy += stepy) {
175 width, srcx, sy, rgba );
250 GLint sy, dy, stepy; local
276 sy = srcy + height - 1;
282 sy = srcy;
288 GLint ssy = sy;
351 GLint sy, dy, stepy; local
    [all...]
  /frameworks/base/libs/hwui/
Matrix.h 127 void loadScale(float sx, float sy, float sz);
128 void loadSkew(float sx, float sy);
170 void scale(float sx, float sy, float sz) {
172 u.loadScale(sx, sy, sz);
176 void skew(float sx, float sy) {
178 u.loadSkew(sx, sy);
211 void decomposeScale(float& sx, float& sy) const;
  /external/deqp/modules/glshared/
glsShaderRenderCase.cpp 170 Vec4 getCoords (float sx, float sy) const;
171 Vec4 getUnitCoords (float sx, float sy) const;
174 Vec4 getUserAttrib (int attribNdx, float sx, float sy) const;
218 float sy = y / (float)gridSize; local
220 float fy = 2.0f * sy - 1.0f;
225 m_screenPos[vtxNdx] = Vec4(sx, sy, 0.0f, 1.0f) * viewportScale;
226 m_coords[vtxNdx] = getCoords(sx, sy);
227 m_unitCoords[vtxNdx] = getUnitCoords(sx, sy);
230 m_userAttribs[attribNdx][vtxNdx] = getUserAttrib(attribNdx, sx, sy);
259 inline Vec4 QuadGrid::getCoords (float sx, float sy) cons
667 float sy = y \/ (float)gridSize; local
751 float sy = ((float)y + 0.5f) \/ (float)height; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_driver.h 58 int dx, int dy, int sx, int sy, int w, int h);
nv04_driver.h 57 int dx, int dy, int sx, int sy, int w, int h);
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 57 inline Scaling(const Scalar& sx, const Scalar& sy)
61 m_coeffs.y() = sy;
64 inline Scaling(const Scalar& sx, const Scalar& sy, const Scalar& sz)
68 m_coeffs.y() = sy;
Translation.h 55 inline Translation(const Scalar& sx, const Scalar& sy)
59 m_coeffs.y() = sy;
62 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz)
66 m_coeffs.y() = sy;
  /external/eigen/Eigen/src/Geometry/
Scaling.h 125 static inline DiagonalMatrix<Scalar,2> Scaling(const Scalar& sx, const Scalar& sy)
126 { return DiagonalMatrix<Scalar,2>(sx, sy); }
129 static inline DiagonalMatrix<Scalar,3> Scaling(const Scalar& sx, const Scalar& sy, const Scalar& sz)
130 { return DiagonalMatrix<Scalar,3>(sx, sy, sz); }
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_driver.h 58 int dx, int dy, int sx, int sy, int w, int h);
nv04_driver.h 57 int dx, int dy, int sx, int sy, int w, int h);
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 52 * s[index] is sx, sy, or sz (screen space x, y, or z).
95 * using the homogeneous screen coordinates (sx, sy, sz, sw) of each vertex,
119 if (v->sy < -sw) y0out++; /* out on top */
120 if (v->sy > sw) y1out++; /* out on bottom */
144 if (y0out) CLIP_AND_SWAP(sy, -1.0f, -1.0f, p, q, r);
145 if (y1out) CLIP_AND_SWAP(sy, 1.0f, 1.0f, p, q, r);
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 161 public void computePhysics(float sx, float sy, float dT, float dTC) {
165 final float gy = -sy * m;
242 private void updatePositions(float sx, float sy, long timestamp) {
251 ball.computePhysics(sx, sy, dT, dTC);
264 public void update(float sx, float sy, long now) {
266 updatePositions(sx, sy, now);
430 final float sy = mSensorY; local
432 particleSystem.update(sx, sy, now);
  /external/chromium_org/third_party/skia/src/core/
SkMatrixClipStateMgr.h 70 void preScale(SkScalar sx, SkScalar sy) {
72 fMatrix.preScale(sx, sy);
80 void preSkew(SkScalar sx, SkScalar sy) {
82 fMatrix.preSkew(sx, sy);
293 void scale(SkScalar sx, SkScalar sy) {
295 fCurMCState->fMatrixInfo->preScale(sx, sy);
303 void skew(SkScalar sx, SkScalar sy) {
305 fCurMCState->fMatrixInfo->preSkew(sx, sy);

Completed in 1572 milliseconds

12 3 4 5 6 7 8 91011>>