Searched refs:y2 (Results 1 - 25 of 30) sorted by relevance

12

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dgeometry_utils.h33 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) { argument
35 const int dy = y1 - y2;
51 const int y2) {
52 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));
50 getDistanceInt(const int x1, const int y1, const int x2, const int y2) argument
H A Dproximity_info_utils.h89 const float y2) {
90 return GeometryUtils::SQUARE_FLOAT(x1 - x2) + GeometryUtils::SQUARE_FLOAT(y1 - y2);
94 const float x1, const float y1, const float x2, const float y2, const bool extend) {
98 const float ray2y = y2 - y1;
116 projectionY = y2;
88 getSquaredDistanceFloat(const float x1, const float y1, const float x2, const float y2) argument
93 pointToLineSegSquaredDistanceFloat(const float x, const float y, const float x1, const float y1, const float x2, const float y2, const bool extend) argument
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DGeometry.h66 double x2, double y2,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
129 inline void FindQuadCentroid(double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3, argument
141 // The quad is split from x0,y0 to x2,y2
65 FindTriangleCentroid(double x0, double y0, double x1, double y1, double x2, double y2, double &mass, double &centX, double &centY) argument
[all...]
H A DBlend.cpp144 double z, x0, y0, x1, y1, x2, y2, x3, y3; local
171 FrameToMosaic(mb->trs, mb->width-1.0, mb->height-1.0, x2, y2);
192 if(y1 > yBottomCorners[0] || y2 > yBottomCorners[1]) // If either of the bottom corners is higher
195 yBottomCorners[1] = y2;
200 FindQuadCentroid(x0, y0, x1, y1, x2, y2, x3, y3, csite->getVCenter().x, csite->getVCenter().y);
1025 int y2 = y1 + 1; local
1030 double y2val = sptr->ptr[y2][x1] +
1031 (sptr->ptr[y2][x2] - sptr->ptr[y2][x1]) * xfrac;
1038 y2val = suptr->ptr[y2][x
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DGeometry.h66 double x2, double y2,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
129 inline void FindQuadCentroid(double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3, argument
141 // The quad is split from x0,y0 to x2,y2
65 FindTriangleCentroid(double x0, double y0, double x1, double y1, double x2, double y2, double &mass, double &centX, double &centY) argument
[all...]
H A DBlend.cpp144 double z, x0, y0, x1, y1, x2, y2, x3, y3; local
171 FrameToMosaic(mb->trs, mb->width-1.0, mb->height-1.0, x2, y2);
192 if(y1 > yBottomCorners[0] || y2 > yBottomCorners[1]) // If either of the bottom corners is higher
195 yBottomCorners[1] = y2;
200 FindQuadCentroid(x0, y0, x1, y1, x2, y2, x3, y3, csite->getVCenter().x, csite->getVCenter().y);
1005 int y2 = y1 + 1; local
1010 double y2val = sptr->ptr[y2][x1] +
1011 (sptr->ptr[y2][x2] - sptr->ptr[y2][x1]) * xfrac;
1018 y2val = suptr->ptr[y2][x
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
H A DMatrixFit.java164 for (int y2 = y + 1; y2 < h; y2++) { // Find max pivot
165 if (Math.abs(m[y2][y]) > Math.abs(m[maxrow][y])) {
166 maxrow = y2;
179 for (int y2 = y + 1; y2 < h; y2++) { // Eliminate column y
180 double c = m[y2][y] / m[y][y];
182 m[y2][
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A Dconvolve3x3.rs32 uint32_t y2 = max((int32_t)y-1, 0);
40 float4 p20 = rsUnpackColor8888(gPixels[x1 + gWidth * y2]);
41 float4 p21 = rsUnpackColor8888(gPixels[x + gWidth * y2]);
42 float4 p22 = rsUnpackColor8888(gPixels[x2 + gWidth * y2]);
H A Dgrad.rs60 float y2 = yPos2[i];
62 float denom = (y2 * y2 - 2 * y1 * y2 + x2 * x2 - 2 * x1 * x2 + y1 * y1 + x1 * x1);
66 grads[k].dy = (y1 - y2) / denom;
68 grads[k].off = (y2 * y2 + x2 * x2 - x1 * x2 - y1 * y2) / denom;
H A DImageFilterGrad.java125 int[] y2 = mParameters.getYPos2();
138 coord[1] = y2[i];
141 y2[i] = (int) coord[1];
148 mScript.set_yPos2(y2);
H A DSplineMath.java53 double y2 = next[1];
62 double tb = b * y2;
94 double y2 = next[1];
103 double tb = b * y2;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DBogusMoveEventDetector.java107 private static int getDistance(final int x1, final int y1, final int x2, final int y2) { argument
108 return (int)Math.hypot(x1 - x2, y1 - y2);
H A DGestureStrokeRecognitionPoints.java331 private static int getDistance(final int x1, final int y1, final int x2, final int y2) { argument
332 return (int)Math.hypot(x1 - x2, y1 - y2);
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java83 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
85 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); argument
87 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
89 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint); argument
H A DGLES11Canvas.java63 // x1, y1, x2, y2.
195 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) { argument
203 scale(x2 - x1, y2 - y1, 1);
318 // {x1', y1', x2', y2'} are stored in mMapPointsBuffer and also returned.
319 private float[] mapPoints(float m[], int x1, int y1, int x2, int y2) { argument
329 // Same for x2 y2.
330 float x4 = m[0] * x2 + m[4] * y2 + m[12];
331 float y4 = m[1] * x2 + m[5] * y2 + m[13];
332 float w4 = m[3] * x2 + m[7] * y2 + m[15];
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java81 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
83 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); argument
85 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
87 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint); argument
/packages/apps/Camera/jni/feature_stab/db_vlvm/
H A Ddb_metrics.h41 double x2,y2,r,r2,r2s,one_over_r2,fu,r_fu,one_over_r_fu; local
74 y2=db_sqr(f[1]);
75 r2=x2+y2;
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
H A Ddb_metrics.h41 double x2,y2,r,r2,r2s,one_over_r2,fu,r_fu,one_over_r_fu; local
74 y2=db_sqr(f[1]);
75 r2=x2+y2;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DDividedImageCanvas.java355 int x1 = width / 2, y1 = 0, x2 = width/2, y2 = height;
357 mCanvas.drawLine(x1, y1, x2, y2, sPaint);
360 protected void drawHorizontalDivider(int x1, int y1, int x2, int y2) { argument
362 mCanvas.drawLine(x1, y1, x2, y2, sPaint);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageGrad.java181 int y2[] = mGradRep.getYPos2();
192 c[1] = (y1[i]+y2[i])/2;
H A DSpline.java186 double y2 = next.y;
195 double tb = b * y2;
280 double y2 = points[i + 1].y;
290 double tb = b * y2;
H A DGradControl.java124 private boolean centerIsOutside(float x1, float y1, float x2, float y2) { argument
125 return (!mImageBounds.contains((int) ((x1 + x2) / 2), (int) ((y1 + y2) / 2)));
H A DGeometryMathUtils.java132 float y2 = line[3];
134 float ydelt = y2 - y1;
140 (x1 + u * (x2 - x1)), (y1 + u * (y2 - y1))
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
H A DPointCloud.java111 public Point(float x2, float y2, float r) { argument
113 y = (float) y2;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DDeleteDropTarget.java279 final float y2 = from.top + offsetY; // intermediate t/l
305 float y = (1f - t) * (1f - t) * (y1 - y1o) + 2 * (1f - t) * t * (y2 - x1o) +

Completed in 620 milliseconds

12