Searched refs:sy (Results 76 - 100 of 267) sorted by relevance

1234567891011

/external/skia/include/core/
H A DSkMatrix.h184 /** Set the matrix to scale by sx and sy, with a pivot point at (px, py).
188 void setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
189 /** Set the matrix to scale by sx and sy.
191 void setScale(SkScalar sx, SkScalar sy);
213 /** Set the matrix to skew by sx and sy, with a pivot point at (px, py).
218 /** Set the matrix to skew by sx and sy.
232 M' = M * S(sx, sy, px, py)
234 void preScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
236 M' = M * S(sx, sy)
238 void preScale(SkScalar sx, SkScalar sy);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrixTearOff.cpp109 PassRefPtr<SVGMatrixTearOff> SVGMatrixTearOff::scaleNonUniform(double sx, double sy) argument
112 matrix->mutableValue()->scale(sx, sy);
H A DSVGTransform.h86 void setScale(float sx, float sy);
H A DSVGTransform.cpp106 void SVGTransform::setScale(float sx, float sy) argument
113 m_matrix.scaleNonUniform(sx, sy);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPoint3D.h80 void scale(float sx, float sy, float sz) argument
83 m_y *= sy;
H A DIntPoint.h61 void scale(float sx, float sy) argument
64 m_y = lroundf(static_cast<float>(m_y * sy));
H A DFloatRect.cpp150 void FloatRect::scale(float sx, float sy) argument
153 m_location.setY(y() * sy);
155 m_size.setHeight(height() * sy);
/external/qemu/android/skin/
H A Dcomposer.h97 extern SkinViewport* skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy );
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.idl115 [RaisesException] void drawImage(HTMLImageElement image, unrestricted float sx, unrestricted float sy, unrestricted float sw, unrestricted float sh, unrestricted float dx, unrestricted float dy, unrestricted float dw, unrestricted float dh);
118 [RaisesException] void drawImage(HTMLCanvasElement canvas, unrestricted float sx, unrestricted float sy, unrestricted float sw, unrestricted float sh, unrestricted float dx, unrestricted float dy, unrestricted float dw, unrestricted float dh);
121 [RaisesException] void drawImage(HTMLVideoElement video, unrestricted float sx, unrestricted float sy, unrestricted float sw, unrestricted float sh, unrestricted float dx, unrestricted float dy, unrestricted float dw, unrestricted float dh);
124 [RuntimeEnabled=ExperimentalCanvasFeatures, RaisesException] void drawImage(ImageBitmap imageBitmap, unrestricted float sx, unrestricted float sy, unrestricted float sw, unrestricted float sh, unrestricted float dx, unrestricted float dy, unrestricted float dw, unrestricted float dh);
134 [RaisesException] ImageData getImageData(float sx, float sy, float sw, float sh);
180 HTMLImageElement? image, optional unrestricted float sx, optional unrestricted float sy, optional unrestricted float sw, optional unrestricted float sh,
H A DCanvasRenderingContext2D.h132 void scale(float sx, float sy);
186 void drawImage(CanvasImageSource*, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState&);
188 void drawImageFromRect(HTMLImageElement*, float sx = 0, float sy = 0, float sw = 0, float sh = 0,
201 PassRefPtrWillBeRawPtr<ImageData> getImageData(float sx, float sy, float sw, float sh, ExceptionState&) const;
327 void drawImageInternal(CanvasImageSource*, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh, ExceptionState&, CompositeOperator, blink::WebBlendMode, GraphicsContext* = 0);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dimage.c119 struct pipe_sampler_view *src, VGint sx, VGint sy,
130 src_loc[1] = sy;
157 struct pipe_surface *src, VGint sx, VGint sy,
168 src_loc[1] = sy;
439 VGint sx, VGint sy,
461 debug_printf("%d-%d == %d\n", sy, height, y);
511 struct vg_image *src, VGint sx, VGint sy,
522 src->sampler_view, src->x + sx, src->y + sy, width, height);
562 struct vg_image *src, VGint sx, VGint sy,
576 surf, sx+src->x, sy
117 vg_copy_texture(struct vg_context *ctx, struct pipe_resource *dst, VGint dx, VGint dy, struct pipe_sampler_view *src, VGint sx, VGint sy, VGint width, VGint height) argument
155 vg_copy_surface(struct vg_context *ctx, struct pipe_surface *dst, VGint dx, VGint dy, struct pipe_surface *src, VGint sx, VGint sy, VGint width, VGint height) argument
435 image_get_sub_data(struct vg_image * image, void * data, VGint dataStride, VGImageFormat dataFormat, VGint sx, VGint sy, VGint width, VGint height) argument
510 image_copy(struct vg_image *dst, VGint dx, VGint dy, struct vg_image *src, VGint sx, VGint sy, VGint width, VGint height, VGboolean dither) argument
561 image_set_pixels(VGint dx, VGint dy, struct vg_image *src, VGint sx, VGint sy, VGint width, VGint height) argument
581 image_get_pixels(struct vg_image *dst, VGint dx, VGint dy, VGint sx, VGint sy, VGint width, VGint height) argument
[all...]
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
H A Dpath.c290 VGfloat sx, VGfloat sy,
295 !floatsEqual(sy, oy)) {
297 VGfloat y0 = sy;
364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
400 close_polygon(current, sx, sy, ox, oy, matrix);
402 oy = sy;
407 close_polygon(current, sx, sy, ox, oy, matrix);
416 sy = y0;
611 close_polygon(current, sx, sy, o
289 close_polygon(struct polygon *current, VGfloat sx, VGfloat sy, VGfloat ox, VGfloat oy, struct matrix *matrix) argument
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dimage.c119 struct pipe_sampler_view *src, VGint sx, VGint sy,
130 src_loc[1] = sy;
157 struct pipe_surface *src, VGint sx, VGint sy,
168 src_loc[1] = sy;
439 VGint sx, VGint sy,
461 debug_printf("%d-%d == %d\n", sy, height, y);
511 struct vg_image *src, VGint sx, VGint sy,
522 src->sampler_view, src->x + sx, src->y + sy, width, height);
562 struct vg_image *src, VGint sx, VGint sy,
576 surf, sx+src->x, sy
117 vg_copy_texture(struct vg_context *ctx, struct pipe_resource *dst, VGint dx, VGint dy, struct pipe_sampler_view *src, VGint sx, VGint sy, VGint width, VGint height) argument
155 vg_copy_surface(struct vg_context *ctx, struct pipe_surface *dst, VGint dx, VGint dy, struct pipe_surface *src, VGint sx, VGint sy, VGint width, VGint height) argument
435 image_get_sub_data(struct vg_image * image, void * data, VGint dataStride, VGImageFormat dataFormat, VGint sx, VGint sy, VGint width, VGint height) argument
510 image_copy(struct vg_image *dst, VGint dx, VGint dy, struct vg_image *src, VGint sx, VGint sy, VGint width, VGint height, VGboolean dither) argument
561 image_set_pixels(VGint dx, VGint dy, struct vg_image *src, VGint sx, VGint sy, VGint width, VGint height) argument
581 image_get_pixels(struct vg_image *dst, VGint dx, VGint dy, VGint sx, VGint sy, VGint width, VGint height) argument
[all...]
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
H A Dpath.c290 VGfloat sx, VGfloat sy,
295 !floatsEqual(sy, oy)) {
297 VGfloat y0 = sy;
364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
400 close_polygon(current, sx, sy, ox, oy, matrix);
402 oy = sy;
407 close_polygon(current, sx, sy, ox, oy, matrix);
416 sy = y0;
611 close_polygon(current, sx, sy, o
289 close_polygon(struct polygon *current, VGfloat sx, VGfloat sy, VGfloat ox, VGfloat oy, struct matrix *matrix) argument
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
[all...]
/external/pixman/pixman/
H A Dpixman-matrix.c462 pixman_fixed_t sy)
467 t->matrix[1][1] = sy;
481 pixman_fixed_t sy)
485 if (sx == 0 || sy == 0)
490 pixman_transform_init_scale (&t, sx, sy);
498 fixed_inverse (sy));
896 double sy)
902 t->m[1][1] = sy;
913 double sy)
917 if (sx == 0 || sy
460 pixman_transform_init_scale(struct pixman_transform *t, pixman_fixed_t sx, pixman_fixed_t sy) argument
478 pixman_transform_scale(struct pixman_transform *forward, struct pixman_transform *reverse, pixman_fixed_t sx, pixman_fixed_t sy) argument
894 pixman_f_transform_init_scale(struct pixman_f_transform *t, double sx, double sy) argument
910 pixman_f_transform_scale(struct pixman_f_transform *forward, struct pixman_f_transform *reverse, double sx, double sy) argument
[all...]
/external/pixman/demos/
H A Dscale.c79 compute_extents (pixman_f_transform_t *trans, double *sx, double *sy) argument
101 *sy = (max_y - min_y) / 2.0;
196 double sx, sy; local
227 compute_extents (&ftransform, &sx, &sy);
235 sy * 65536.0 + 0.5,
/external/skia/src/effects/
H A DSkBicubicImageFilter.cpp129 int sy = SkScalarFloorToInt(srcPt.fY); local
134 int y0 = SkClampMax(sy - 1, src.height() - 1);
135 int y1 = SkClampMax(sy , src.height() - 1);
136 int y2 = SkClampMax(sy + 1, src.height() - 1);
137 int y3 = SkClampMax(sy + 2, src.height() - 1);
/external/libvorbis/doc/
H A D09-helper.tex145 9) [sy] = [base] - 1
149 10) [sy] = [base] + 1
162 17) [y] = [y] + [sy]
/external/chromium_org/third_party/skia/include/utils/
H A DSkMatrix44.h284 void setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
285 void preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
286 void postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
/external/skia/include/utils/
H A DSkMatrix44.h280 void setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
281 void preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
282 void postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMMatrix.h46 DOMMatrix* scaleNonUniformSelf(double sx, double sy = 1, double sz = 1,
/external/skia/src/core/
H A DSkScaledImageCache.h193 Rec* findAndLock(uint32_t generationID, SkScalar sx, SkScalar sy,
H A DSkPath.cpp1183 SkScalar sy = SkScalarMul(ry, CUBIC_ARC_FACTOR); local
1192 rect.fLeft, rect.fTop + ry - sy,
1197 this->cubicTo(rect.fLeft, rect.fBottom - ry + sy,
1204 rect.fRight, rect.fBottom - ry + sy,
1209 this->cubicTo(rect.fRight, rect.fTop + ry - sy,
1214 rect.fRight, rect.fTop + ry - sy,
1219 this->cubicTo(rect.fRight, rect.fBottom - ry + sy,
1226 rect.fLeft, rect.fBottom - ry + sy,
1231 this->cubicTo(rect.fLeft, rect.fTop + ry - sy,
1272 SkScalar sy local
2283 int sy = sign(vec.fY); local
[all...]

Completed in 418 milliseconds

1234567891011