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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/
StatefulBaseRenderer.h 75 virtual void scale(float sx, float sy);
76 virtual void skew(float sx, float sy);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 261 /*package*/ static void native_setScale(long native_object, float sx, float sy,
268 d.mValues = getScale(sx, sy, px, py);
272 /*package*/ static void native_setScale(long native_object, float sx, float sy) {
282 d.mValues[4] = sy;
394 /*package*/ static void native_preScale(long native_object, float sx, float sy,
398 d.preTransform(getScale(sx, sy, px, py));
403 /*package*/ static void native_preScale(long native_object, float sx, float sy) {
406 d.preTransform(getScale(sx, sy));
467 /*package*/ static void native_postScale(long native_object, float sx, float sy,
471 d.postTransform(getScale(sx, sy, px, py))
545 float ty, sy = dst.height() \/ src.height(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 118 double sy = 1.0; local
120 sy = firstValue->getDoubleValue();
126 sy = secondValue->getDoubleValue();
128 sy = sx;
131 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType())));
137 double sy = 1.0; local
142 sy = firstValue->getDoubleValue();
152 sy = secondValue->getDoubleValue();
154 sy = sx;
157 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType())))
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 100 float sy = targetPatchSize / gestureHeight; local
103 float scale = sx < sy ? sx : sy;
105 sy = scale;
113 float scale = sx < sy ? sx : sy;
115 sy = scale;
117 if (sx > sy) {
118 float scale = sy * NONUNIFORM_SCALE;
124 if (scale < sy) {
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 30 SkScalar sy = SkScalarMul(ny, CUBIC_ARC_FACTOR); local
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /external/skia/src/core/
SkStrokerPriv.cpp 30 SkScalar sy = SkScalarMul(ny, CUBIC_ARC_FACTOR); local
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 118 float sy = cropBounds.height() * spotY; local
121 RectF r1 = new RectF(cx - sx / 2, cy - sy / 2, cx + sx / 2, cy + sy / 2);
123 sx = sy;
124 sy = temp;
125 RectF r2 = new RectF(cx - sx / 2, cy - sy / 2, cx + sx / 2, cy + sy / 2);
  /external/chromium_org/third_party/skia/src/utils/
SkMatrix44.cpp 259 void SkMatrix44::setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) {
262 if (1 == sx && 1 == sy && 1 == sz) {
267 fMat[1][1] = sy;
272 void SkMatrix44::preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) {
273 if (1 == sx && 1 == sy && 1 == sz) {
282 fMat[1][i] *= sy;
288 void SkMatrix44::postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) {
289 if (1 == sx && 1 == sy && 1 == sz) {
295 fMat[i][1] *= sy;
785 SkMScalar sy = SkFloatToMScalar(src2[1]) local
802 double sy = src2[1]; local
817 SkMScalar sy = SkFloatToMScalar(src2[1]); local
831 double sy = src2[1]; local
    [all...]
  /external/skia/src/utils/
SkMatrix44.cpp 259 void SkMatrix44::setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) {
262 if (1 == sx && 1 == sy && 1 == sz) {
267 fMat[1][1] = sy;
272 void SkMatrix44::preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) {
273 if (1 == sx && 1 == sy && 1 == sz) {
282 fMat[1][i] *= sy;
288 void SkMatrix44::postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) {
289 if (1 == sx && 1 == sy && 1 == sz) {
295 fMat[i][1] *= sy;
785 SkMScalar sy = SkFloatToMScalar(src2[1]) local
802 double sy = src2[1]; local
817 SkMScalar sy = SkFloatToMScalar(src2[1]); local
831 double sy = src2[1]; local
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmscgats.c 153 SYMBOL sy; // Current symbol member in struct:__anon32389
200 SYMBOL sy; member in struct:__anon32391
470 it8->sy = SSYNERROR;
477 cmsBool Check(cmsIT8* it8, SYMBOL sy, const char* Err)
479 if (it8 -> sy != sy)
522 if (res == 0) return TabKeys[x-1].sy;
712 if (key == SNONE) it8->sy = SIDENT;
713 else it8->sy = key;
727 it8->sy = SINUM
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
AffineTransform.h 91 AffineTransform& scale(double sx, double sy);
92 AffineTransform& scaleNonUniform(double sx, double sy);
97 AffineTransform& shear(double sx, double sy);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
renderer.h 74 VGint sx, VGint sy, VGint sw, VGint sh);
83 VGint sx, VGint sy, VGint sw, VGint sh);
116 VGint sx, VGint sy, VGint sw, VGint sh);
api_transform.c 110 void vegaScale(VGfloat sx, VGfloat sy)
114 matrix_scale(dst, sx, sy);
mask.c 98 VGint sx, VGint sy,
109 VGint y = (stfb->height - sy) - 1, yStep = -1;
120 if (sy < 0) {
121 yoffset = -sy;
122 height += sy;
123 sy = 0;
124 y = (stfb->height - sy) - 1;
137 debug_printf("%d-%d == %d\n", sy, height, y);
392 VGint sx, VGint sy,
407 sy += height
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_surface.c 196 int dx, int dy, int sx, int sy,
261 PUSH_RELOC(push, src->bo, src->offset + (y + sy) * src->pitch +
277 int dx, int dy, int sx, int sy,
288 unsigned src_offset = src->offset + sy * src->pitch + sx * src->cpp;
365 int dx, int dy, int sx, int sy,
384 sp + get_src(src, sx + x, sy + y), dst->cpp);
393 int dx, int dy, int sx, int sy,
398 sy = get_format_blocksy(src->format, sy);
408 nv04_surface_copy_m2mf(ctx, dst, src, dx, dy, sx, sy, w, h)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.h 74 VGint sx, VGint sy, VGint sw, VGint sh);
83 VGint sx, VGint sy, VGint sw, VGint sh);
116 VGint sx, VGint sy, VGint sw, VGint sh);
api_transform.c 110 void vegaScale(VGfloat sx, VGfloat sy)
114 matrix_scale(dst, sx, sy);
mask.c 98 VGint sx, VGint sy,
109 VGint y = (stfb->height - sy) - 1, yStep = -1;
120 if (sy < 0) {
121 yoffset = -sy;
122 height += sy;
123 sy = 0;
124 y = (stfb->height - sy) - 1;
137 debug_printf("%d-%d == %d\n", sy, height, y);
392 VGint sx, VGint sy,
407 sy += height
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_surface.c 196 int dx, int dy, int sx, int sy,
261 PUSH_RELOC(push, src->bo, src->offset + (y + sy) * src->pitch +
277 int dx, int dy, int sx, int sy,
288 unsigned src_offset = src->offset + sy * src->pitch + sx * src->cpp;
365 int dx, int dy, int sx, int sy,
384 sp + get_src(src, sx + x, sy + y), dst->cpp);
393 int dx, int dy, int sx, int sy,
398 sy = get_format_blocksy(src->format, sy);
408 nv04_surface_copy_m2mf(ctx, dst, src, dx, dy, sx, sy, w, h)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 77 static void setScale__FFFF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat sx, jfloat sy, jfloat px, jfloat py) {
79 obj->setScale(sx, sy, px, py);
81 static void setScale__FF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat sx, jfloat sy) {
83 obj->setScale(sx, sy);
121 static void preScale__FFFF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat sx, jfloat sy, jfloat px, jfloat py) {
123 obj->preScale(sx, sy, px, py);
126 static void preScale__FF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat sx, jfloat sy) {
128 obj->preScale(sx, sy);
162 static void postScale__FFFF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat sx, jfloat sy, jfloat px, jfloat py) {
164 obj->postScale(sx, sy, px, py)
    [all...]
  /external/chromium_org/skia/ext/
platform_device_mac.cc 102 SkScalar sy = matrix.getScaleY() * (SkScalar)-1; local
103 transformed_matrix.setScaleY(sy);
  /external/chromium_org/third_party/skia/src/gpu/
GrPathUtils.h 84 float sy = fM[4]; local
90 uv->fY = ky * xy->fX + sy * xy->fY + ty;
  /external/skia/src/gpu/
GrPathUtils.h 84 float sy = fM[4]; local
90 uv->fY = ky * xy->fX + sy * xy->fY + ty;
  /external/qemu/android/skin/
surface.c 273 int sy; member in struct:__anon32912
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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_setup.c 58 float sx, sy; /**< first sample point coord */ member in struct:edge
685 setup->emaj.sy = ceilf(vmin_y);
686 setup->emaj.lines = (int) ceilf(vmax_y - setup->emaj.sy);
688 setup->emaj.sx = vmin_x + (setup->emaj.sy - vmin_y) * setup->emaj.dxdy;
690 setup->etop.sy = ceilf(vmid_y);
691 setup->etop.lines = (int) ceilf(vmax_y - setup->etop.sy);
693 setup->etop.sx = vmid_x + (setup->etop.sy - vmid_y) * setup->etop.dxdy;
695 setup->ebot.sy = ceilf(vmin_y);
696 setup->ebot.lines = (int) ceilf(vmid_y - setup->ebot.sy);
698 setup->ebot.sx = vmin_x + (setup->ebot.sy - vmin_y) * setup->ebot.dxdy
718 int sy = (int)eleft->sy; local
    [all...]

Completed in 1079 milliseconds

1 23 4 5 6 7 8 91011>>