Home
last modified time | relevance | path

Searched refs:sx (Results 1 – 25 of 50) sorted by relevance

12

/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DColorCube.java35 final int sx = 32; in initCube() local
40 tb.setX(sx); in initCube()
46 int dat[] = new int[sx * sy * sz]; in initCube()
49 for (int x = 0; x < sx; x++ ) { in initCube()
51 v |= (0xff * x / (sx - 1)); in initCube()
54 dat[z*sy*sx + y*sx + x] = v; in initCube()
/frameworks/base/graphics/java/android/graphics/
DMatrix.java66 public void setScale(float sx, float sy, float px, float py) {
71 public void setScale(float sx, float sy) {
118 public boolean preScale(float sx, float sy, float px, float py) {
124 public boolean preScale(float sx, float sy) {
166 public boolean postScale(float sx, float sy, float px, float py) {
172 public boolean postScale(float sx, float sy) {
328 public void setScale(float sx, float sy, float px, float py) { in setScale() argument
329 nSetScale(native_instance, sx, sy, px, py); in setScale()
333 public void setScale(float sx, float sy) { in setScale() argument
334 nSetScale(native_instance, sx, sy); in setScale()
[all …]
DCanvas.java734 public void scale(float sx, float sy) { in scale() argument
735 if (sx == 1.0f && sy == 1.0f) return; in scale()
736 nScale(mNativeCanvasWrapper, sx, sy); in scale()
747 public final void scale(float sx, float sy, float px, float py) { in scale() argument
748 if (sx == 1.0f && sy == 1.0f) return; in scale()
750 scale(sx, sy); in scale()
784 public void skew(float sx, float sy) { in skew() argument
785 if (sx == 0.0f && sy == 0.0f) return; in skew()
786 nSkew(mNativeCanvasWrapper, sx, sy); in skew()
1423 private static native void nScale(long canvasHandle, float sx, float sy); in nScale() argument
[all …]
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
DColorCube.java43 final int sx = 32; in initCube() local
48 tb.setX(sx); in initCube()
54 int dat[] = new int[sx * sy * sz]; in initCube()
57 for (int x = 0; x < sx; x++ ) { in initCube()
59 v |= (0xff * x / (sx - 1)); in initCube()
62 dat[z*sy*sx + y*sx + x] = v; in initCube()
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
DColorCube.java43 final int sx = 32; in initCube() local
48 tb.setX(sx); in initCube()
54 int dat[] = new int[sx * sy * sz]; in initCube()
57 for (int x = 0; x < sx; x++ ) { in initCube()
59 v |= (0xff * x / (sx - 1)); in initCube()
62 dat[z*sy*sx + y*sx + x] = v; in initCube()
/frameworks/base/libs/hwui/
DMatrix.h114 void loadScale(float sx, float sy, float sz);
115 void loadSkew(float sx, float sy);
166 void scale(float sx, float sy, float sz) { in scale() argument
168 u.loadScale(sx, sy, sz); in scale()
172 void skew(float sx, float sy) { in skew() argument
174 u.loadSkew(sx, sy); in skew()
207 void decomposeScale(float& sx, float& sy) const;
DMatrix.cpp293 void Matrix4::loadScale(float sx, float sy, float sz) { in loadScale() argument
296 data[kScaleX] = sx; in loadScale()
303 void Matrix4::loadSkew(float sx, float sy) { in loadSkew() argument
307 data[kSkewX] = sx; in loadSkew()
512 void Matrix4::decomposeScale(float& sx, float& sy) const { in decomposeScale() argument
515 sx = copysignf(sqrtf(len), data[mat4::kScaleX]); in decomposeScale()
/frameworks/base/core/java/android/gesture/
DGestureUtils.java99 float sx = targetPatchSize / gestureWidth; in spatialSampling() local
103 float scale = sx < sy ? sx : sy; in spatialSampling()
104 sx = scale; in spatialSampling()
113 float scale = sx < sy ? sx : sy; in spatialSampling()
114 sx = scale; in spatialSampling()
117 if (sx > sy) { in spatialSampling()
119 if (scale < sx) { in spatialSampling()
120 sx = scale; in spatialSampling()
123 float scale = sx * NONUNIFORM_SCALE; in spatialSampling()
145 pts[i] = (strokepoints[i] + preDx) * sx + postDx; in spatialSampling()
[all …]
DGestureStroke.java166 float sx = width / rect.width(); in toPath() local
168 float scale = sx > sy ? sy : sx; in toPath()
DGesture.java238 final float sx = (width - 2 * inset) / bounds.width(); in toBitmap() local
240 final float scale = sx > sy ? sy : sx; in toBitmap()
/frameworks/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java267 /*package*/ static void nSetScale(long native_object, float sx, float sy, in nSetScale() argument
274 d.mValues = getScale(sx, sy, px, py); in nSetScale()
278 /*package*/ static void nSetScale(long native_object, float sx, float sy) { in nSetScale() argument
284 d.mValues[0] = sx; in nSetScale()
400 /*package*/ static void nPreScale(long native_object, float sx, float sy, in nPreScale() argument
404 d.preTransform(getScale(sx, sy, px, py)); in nPreScale()
409 /*package*/ static void nPreScale(long native_object, float sx, float sy) { in nPreScale() argument
412 d.preTransform(getScale(sx, sy)); in nPreScale()
473 /*package*/ static void nPostScale(long native_object, float sx, float sy, in nPostScale() argument
477 d.postTransform(getScale(sx, sy, px, py)); in nPostScale()
[all …]
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp81 wp = (float *)&q->vert[q->n].sx; in poly_clip_to_halfspace()
116 if (v->sx < -sw) x0out++; /* out on left */ in poly_clip_to_frustum()
117 if (v->sx > sw) x1out++; /* out on right */ in poly_clip_to_frustum()
141 if (x0out) CLIP_AND_SWAP(sx, -1.0f, -1.0f, p, q, r); in poly_clip_to_frustum()
142 if (x1out) CLIP_AND_SWAP(sx, 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/base/core/jni/android/graphics/
DMatrix.cpp173 static void setScale__FFFF(jlong objHandle, jfloat sx, jfloat sy, jfloat px, in setScale__FFFF() argument
176 obj->setScale(sx, sy, px, py); in setScale__FFFF()
179 static void setScale__FF(jlong objHandle, jfloat sx, jfloat sy) { in setScale__FF() argument
181 obj->setScale(sx, sy); in setScale__FF()
230 static void preScale__FFFF(jlong objHandle, jfloat sx, jfloat sy, jfloat px, in preScale__FFFF() argument
233 obj->preScale(sx, sy, px, py); in preScale__FFFF()
236 static void preScale__FF(jlong objHandle, jfloat sx, jfloat sy) { in preScale__FF() argument
238 obj->preScale(sx, sy); in preScale__FF()
274 static void postScale__FFFF(jlong objHandle, jfloat sx, jfloat sy, in postScale__FFFF() argument
277 obj->postScale(sx, sy, px, py); in postScale__FFFF()
[all …]
/frameworks/native/libs/gui/
DGLConsumerUtils.cpp62 float tx = 0.0f, ty = 0.0f, sx = 1.0f, sy = 1.0f; in computeTransformMatrix() local
97 sx = (float(cropRect.width()) - (2.0f * shrinkAmount)) / in computeTransformMatrix()
108 sx, 0, 0, 0, in computeTransformMatrix()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java652 float sx = (float) Math.sin(x); in setRotateEulerM() local
658 float sxsy = sx * sy; in setRotateEulerM()
667 rm[rmOffset + 6] = -sx * cy; in setRotateEulerM()
670 rm[rmOffset + 8] = -sxsy * cz + sx * sz; in setRotateEulerM()
671 rm[rmOffset + 9] = sxsy * sz + sx * cz; in setRotateEulerM()
716 float sx = fy * upZ - fz * upY; in setLookAtM() local
721 float rls = 1.0f / Matrix.length(sx, sy, sz); in setLookAtM()
722 sx *= rls; in setLookAtM()
728 float uy = sz * fx - sx * fz; in setLookAtM()
729 float uz = sx * fy - sy * fx; in setLookAtM()
[all …]
/frameworks/native/opengl/tests/gl_jni/jni/
Dgl_code.cpp54 float sx = fy * upZ - fz * upY; in gluLookAt() local
60 float uy = sz * fx - sx * fz; in gluLookAt()
61 float uz = sx * fy - sy * fx; in gluLookAt()
64 m[0] = sx; in gluLookAt()
/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/native/opengl/tests/tritex/
Dtritex.cpp60 float sx = fy * upZ - fz * upY; in gluLookAt() local
66 float uy = sz * fx - sx * fz; in gluLookAt()
67 float uz = sx * fy - sy * fx; in gluLookAt()
70 m[0] = sx; in gluLookAt()
/frameworks/base/core/java/android/view/animation/
DScaleAnimation.java242 float sx = 1.0f; in applyTransformation() local
247 sx = mFromX + ((mToX - mFromX) * interpolatedTime); in applyTransformation()
254 t.getMatrix().setScale(sx, sy); in applyTransformation()
256 t.getMatrix().setScale(sx, sy, scale * mPivotX, scale * mPivotY); in applyTransformation()
/frameworks/layoutlib/bridge/src/android/view/
DViewGroup_Delegate.java155 int sx = child.mScrollX; in transformCanvas() local
158 canvas.translate(child.mLeft - sx, child.mTop - sy); in transformCanvas()
163 int transX = -sx; in transformCanvas()
/frameworks/native/opengl/tests/gl_basic/
Dgl_basic.cpp65 float sx = fy * upZ - fz * upY; in gluLookAt() local
71 float uy = sz * fx - sx * fz; in gluLookAt()
72 float uz = sx * fy - sy * fx; in gluLookAt()
75 m[0] = sx; in gluLookAt()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
DLoaderDicom.java473 float sx = Float.parseFloat(pss[0]); in buildRSVolume() local
479 float min = Math.min(sx,Math.min(sy,sz)); in buildRSVolume()
480 v.mVoxelDim[0] = sx/min; in buildRSVolume()
597 float sx = Float.parseFloat(pss[0]); in buildRSVolume2() local
603 float min = Math.min(sx,Math.min(sy,sz)); in buildRSVolume2()
604 v.mVoxelDim[0] = sx/min; in buildRSVolume2()
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
DTestLatencyView.java119 float sx = (x + dx * step) * mScaleX + mOffsetX; in onDrawFrame() local
124 mTriangleVerticesData2[i] = sx + mTriangleVerticesData[i]; in onDrawFrame()
/frameworks/base/libs/hwui/surfacetexture/
DSurfaceTexture.cpp307 float tx = 0.0f, ty = 0.0f, sx = 1.0f, sy = 1.0f; in computeTransformMatrix() local
342 sx = (float(cropRect.width()) - (2.0f * shrinkAmount)) / bufferWidth; in computeTransformMatrix()
349 mat4 crop(sx, 0, 0, 0, 0, sy, 0, 0, 0, 0, 1, 0, tx, ty, 0, 1); in computeTransformMatrix()

12