Home
last modified time | relevance | path

Searched refs:sy (Results 1 – 25 of 54) sorted by relevance

123

/frameworks/base/graphics/java/android/graphics/
DMatrix.java63 public void setScale(float sx, float sy, float px, float py) {
68 public void setScale(float sx, float sy) {
115 public boolean preScale(float sx, float sy, float px, float py) {
121 public boolean preScale(float sx, float sy) {
163 public boolean postScale(float sx, float sy, float px, float py) {
169 public boolean postScale(float sx, float sy) {
326 public void setScale(float sx, float sy, float px, float py) { in setScale() argument
327 nSetScale(native_instance, sx, sy, px, py); in setScale()
331 public void setScale(float sx, float sy) { in setScale() argument
332 nSetScale(native_instance, sx, sy); in setScale()
[all …]
DCanvas.java630 public void scale(float sx, float sy) { in scale() argument
631 if (sx == 1.0f && sy == 1.0f) return; in scale()
632 nScale(mNativeCanvasWrapper, sx, sy); in scale()
643 public final void scale(float sx, float sy, float px, float py) { in scale() argument
644 if (sx == 1.0f && sy == 1.0f) return; in scale()
646 scale(sx, sy); in scale()
680 public void skew(float sx, float sy) { in skew() argument
681 if (sx == 0.0f && sy == 0.0f) return; in skew()
682 nSkew(mNativeCanvasWrapper, sx, sy); in skew()
1269 private static native void nScale(long canvasHandle, float sx, float sy); in nScale() argument
[all …]
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DColorCube.java36 final int sy = 32; in initCube() local
41 tb.setY(sy); in initCube()
46 int dat[] = new int[sx * sy * sz]; in initCube()
48 for (int y = 0; y < sy; y++) { in initCube()
52 v |= (0xff * y / (sy - 1)) << 8; in initCube()
54 dat[z*sy*sx + y*sx + x] = v; in initCube()
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
DColorCube.java44 final int sy = 32; in initCube() local
49 tb.setY(sy); in initCube()
54 int dat[] = new int[sx * sy * sz]; in initCube()
56 for (int y = 0; y < sy; y++) { in initCube()
60 v |= (0xff * y / (sy - 1)) << 8; in initCube()
62 dat[z*sy*sx + y*sx + x] = v; in initCube()
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
DColorCube.java44 final int sy = 32; in initCube() local
49 tb.setY(sy); in initCube()
54 int dat[] = new int[sx * sy * sz]; in initCube()
56 for (int y = 0; y < sy; y++) { in initCube()
60 v |= (0xff * y / (sy - 1)) << 8; in initCube()
62 dat[z*sy*sx + y*sx + x] = v; in initCube()
/frameworks/support/transition/src/android/support/transition/
DMatrixUtils.java46 public void setScale(float sx, float sy, float px, float py) {
51 public void setScale(float sx, float sy) {
98 public boolean preScale(float sx, float sy, float px, float py) {
104 public boolean preScale(float sx, float sy) {
146 public boolean postScale(float sx, float sy, float px, float py) {
152 public boolean postScale(float sx, float sy) {
/frameworks/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java264 /*package*/ static void nSetScale(long native_object, float sx, float sy, in nSetScale() argument
271 d.mValues = getScale(sx, sy, px, py); in nSetScale()
275 /*package*/ static void nSetScale(long native_object, float sx, float sy) { in nSetScale() argument
285 d.mValues[4] = sy; in nSetScale()
397 /*package*/ static void nPreScale(long native_object, float sx, float sy, in nPreScale() argument
401 d.preTransform(getScale(sx, sy, px, py)); in nPreScale()
406 /*package*/ static void nPreScale(long native_object, float sx, float sy) { in nPreScale() argument
409 d.preTransform(getScale(sx, sy)); in nPreScale()
470 /*package*/ static void nPostScale(long native_object, float sx, float sy, in nPostScale() argument
474 d.postTransform(getScale(sx, sy, px, py)); in nPostScale()
[all …]
/frameworks/base/libs/hwui/
DMatrix.h122 void loadScale(float sx, float sy, float sz);
123 void loadSkew(float sx, float sy);
176 void scale(float sx, float sy, float sz) { in scale() argument
178 u.loadScale(sx, sy, sz); in scale()
182 void skew(float sx, float sy) { in skew() argument
184 u.loadSkew(sx, sy); in skew()
217 void decomposeScale(float& sx, float& sy) const;
DCanvasState.cpp176 void CanvasState::scale(float sx, float sy) { in scale() argument
177 mSnapshot->transform->scale(sx, sy, 1.0f); in scale()
180 void CanvasState::skew(float sx, float sy) { in skew() argument
181 mSnapshot->transform->skew(sx, sy); in skew()
DCanvasState.h111 void scale(float sx, float sy);
112 void skew(float sx, float sy);
DMatrix.cpp288 void Matrix4::loadScale(float sx, float sy, float sz) { in loadScale() argument
292 data[kScaleY] = sy; in loadScale()
298 void Matrix4::loadSkew(float sx, float sy) { in loadSkew() argument
305 data[kSkewY] = sy; in loadSkew()
508 void Matrix4::decomposeScale(float& sx, float& sy) const { in decomposeScale()
513 sy = copysignf(sqrtf(len), data[mat4::kScaleY]); in decomposeScale()
/frameworks/base/core/java/android/gesture/
DGestureUtils.java100 float sy = targetPatchSize / gestureHeight; in spatialSampling() local
103 float scale = sx < sy ? sx : sy; in spatialSampling()
105 sy = scale; in spatialSampling()
113 float scale = sx < sy ? sx : sy; in spatialSampling()
115 sy = scale; in spatialSampling()
117 if (sx > sy) { in spatialSampling()
118 float scale = sy * NONUNIFORM_SCALE; in spatialSampling()
124 if (scale < sy) { in spatialSampling()
125 sy = scale; in spatialSampling()
146 pts[i + 1] = (strokepoints[i + 1] + preDy) * sy + postDy; in spatialSampling()
[all …]
DGestureStroke.java167 float sy = height / rect.height(); in toPath() local
168 float scale = sx > sy ? sy : sx; in toPath()
DGesture.java239 final float sy = (height - 2 * inset) / bounds.height(); in toBitmap() local
240 final float scale = sx > sy ? sy : sx; in toBitmap()
/frameworks/base/core/jni/android/graphics/
DMatrix.cpp174 static void setScale__FFFF(jlong objHandle, jfloat sx, jfloat sy, jfloat px, in setScale__FFFF() argument
177 obj->setScale(sx, sy, px, py); in setScale__FFFF()
180 static void setScale__FF(jlong objHandle, jfloat sx, jfloat sy) { in setScale__FF() argument
182 obj->setScale(sx, sy); in setScale__FF()
231 static void preScale__FFFF(jlong objHandle, jfloat sx, jfloat sy, jfloat px, in preScale__FFFF() argument
234 obj->preScale(sx, sy, px, py); in preScale__FFFF()
237 static void preScale__FF(jlong objHandle, jfloat sx, jfloat sy) { in preScale__FF() argument
239 obj->preScale(sx, sy); in preScale__FF()
275 static void postScale__FFFF(jlong objHandle, jfloat sx, jfloat sy, in postScale__FFFF() argument
278 obj->postScale(sx, sy, px, py); in postScale__FFFF()
[all …]
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp118 if (v->sy < -sw) y0out++; /* out on top */ in poly_clip_to_frustum()
119 if (v->sy > sw) y1out++; /* out on bottom */ in poly_clip_to_frustum()
143 if (y0out) CLIP_AND_SWAP(sy, -1.0f, -1.0f, p, q, r); in poly_clip_to_frustum()
144 if (y1out) CLIP_AND_SWAP(sy, 1.0f, 1.0f, p, q, r); in poly_clip_to_frustum()
Dpoly.h35 float sx, sy, sz, sw; /* screen space position (sometimes homo.) */ member
/frameworks/native/opengl/tests/gl_jni/jni/
Dgl_code.cpp50 float sy = fz * upX - fx * upZ; in gluLookAt() local
54 float ux = sy * fz - sz * fy; in gluLookAt()
56 float uz = sx * fy - sy * fx; in gluLookAt()
64 m[4] = sy; in gluLookAt()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java654 float sy = (float) Math.sin(y); in setRotateEulerM() local
657 float cxsy = cx * sy; in setRotateEulerM()
658 float sxsy = sx * sy; in setRotateEulerM()
662 rm[rmOffset + 2] = sy; in setRotateEulerM()
717 float sy = fz * upX - fx * upZ; in setLookAtM() local
721 float rls = 1.0f / Matrix.length(sx, sy, sz); in setLookAtM()
723 sy *= rls; in setLookAtM()
727 float ux = sy * fz - sz * fy; in setLookAtM()
729 float uz = sx * fy - sy * fx; in setLookAtM()
736 rm[rmOffset + 4] = sy; in setLookAtM()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
DQuad.java280 public Quad scale2(float sx, float sy) { in scale2() argument
281 return new Quad(mTopLeft.x * sx, mTopLeft.y * sy, in scale2()
282 mTopRight.x * sx, mTopRight.y * sy, in scale2()
283 mBottomLeft.x * sx, mBottomLeft.y * sy, in scale2()
284 mBottomRight.x * sx, mBottomRight.y * sy); in scale2()
/frameworks/base/core/java/android/view/animation/
DScaleAnimation.java243 float sy = 1.0f; in applyTransformation() local
250 sy = mFromY + ((mToY - mFromY) * interpolatedTime); in applyTransformation()
254 t.getMatrix().setScale(sx, sy); in applyTransformation()
256 t.getMatrix().setScale(sx, sy, scale * mPivotX, scale * mPivotY); in applyTransformation()
/frameworks/native/opengl/tests/tritex/
Dtritex.cpp61 float sy = fz * upX - fx * upZ; in gluLookAt() local
65 float ux = sy * fz - sz * fy; in gluLookAt()
67 float uz = sx * fy - sy * fx; in gluLookAt()
75 m[4] = sy; in gluLookAt()
/frameworks/layoutlib/bridge/src/android/view/
DViewGroup_Delegate.java129 int sy = child.mScrollY; in transformCanvas() local
131 canvas.translate(child.mLeft - sx, child.mTop - sy); in transformCanvas()
137 int transY = -sy; in transformCanvas()
/frameworks/native/opengl/tests/gl_basic/
Dgl_basic.cpp64 float sy = fz * upX - fx * upZ; in gluLookAt() local
68 float ux = sy * fz - sz * fy; in gluLookAt()
70 float uz = sx * fy - sy * fx; in gluLookAt()
78 m[4] = sy; in gluLookAt()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
DLoaderDicom.java474 float sy = Float.parseFloat(pss[1]); in buildRSVolume() local
479 float min = Math.min(sx,Math.min(sy,sz)); in buildRSVolume()
481 v.mVoxelDim[1] = sy/min; in buildRSVolume()
598 float sy = Float.parseFloat(pss[1]); in buildRSVolume2() local
603 float min = Math.min(sx,Math.min(sy,sz)); in buildRSVolume2()
605 v.mVoxelDim[1] = sy/min; in buildRSVolume2()

123