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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
cxx0x-class.cpp 26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}} member in struct:rdar8367341::A
  /external/skia/include/utils/
SkCubicInterval.h 14 SkScalar x2, SkScalar y2,
  /external/skia/src/utils/
SkCubicInterval.cpp 50 SkScalar x2, SkScalar y2,
65 y2 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
  /development/perftests/panorama/feature_mos/src/mosaic/
Geometry.h 66 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,
141 // The quad is split from x0,y0 to x2,y2
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
157 y2 = prevFrame + lumstart;
162 oscl_memcpy(y1, y2, MB_SIZE);
164 y2 += width_Y;
165 oscl_memcpy(y1, y2, MB_SIZE);
167 y2 += width_Y;
168 oscl_memcpy(y1, y2, MB_SIZE);
170 y2 += width_Y;
171 oscl_memcpy(y1, y2, MB_SIZE);
173 y2 += width_Y
    [all...]
get_pred_adv_b_add.cpp 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 66 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,
141 // The quad is split from x0,y0 to x2,y2
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 66 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,
141 // The quad is split from x0,y0 to x2,y2
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
MatrixFit.java 164 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][x] -= m[y][x] * c
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftbbox.c 95 /* y2 :: The coordinate of the control point. */
106 FT_Pos y2,
111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
123 y2 = y1;
125 y3 = y2;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftbbox.c 95 /* y2 :: The coordinate of the control point. */
106 FT_Pos y2,
111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
123 y2 = y1;
125 y3 = y2;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 )
    [all...]
  /external/qemu/android/skin/
rect.c 150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) {
170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) {
178 r.y2 = (a.y2 < b.y2) ? a.y2 : b.y2
    [all...]
  /external/pixman/demos/
quad2quad.c 12 double x2, double y2,
116 t4 = (t3 - px2 * px3 * x2 * x3) * y2;
125 t11 = (t10 + t9) * y2;
153 t33 = t32 * y2;
160 t38 = (t37 + px2 * px3 * x2 * x3) * y2;
168 t44 = (t43 + t42) * y2;
172 t47 = (px2 * px3 * x3 - px2 * px3 * x2) * y2;
180 t53 = (t26 + t52 + t51) * y2;
209 t76 = t75 + t74 + t73 * y2;
215 t81 = t80 + t79 + (t78 + t77) * y2;
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve5x5.rs 35 uint32_t y2 = y;
51 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10]
52 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11]
53 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12]
54 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13]
55 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
82 uint32_t y2 = y;
98 float3 p2 = convert_float3(rsGetElementAt_uchar3(gIn, x0, y2)) * gCoeffs[10]
99 + convert_float3(rsGetElementAt_uchar3(gIn, x1, y2)) * gCoeffs[11]
100 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y2)) * gCoeffs[12
    [all...]
  /external/pdfium/core/src/fxge/agg/agg23/
agg_curves.h 26 FX_FLOAT x2, FX_FLOAT y2,
33 cp[3] = y2;
40 FX_FLOAT x2, FX_FLOAT y2,
47 cp[3] = y2;
70 FX_FLOAT x2, FX_FLOAT y2,
76 init(x1, y1, x2, y2, x3, y3, x4, y4);
89 FX_FLOAT x2, FX_FLOAT y2,
127 FX_FLOAT x2, FX_FLOAT y2,
131 FX_FLOAT x2, FX_FLOAT y2,
146 FX_FLOAT x2, FX_FLOAT y2,
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemevents.c 83 short x2,y2,w2,h2; local
89 x2=y2=w2=h2 = 0;
93 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
102 mouse_event,x2,y2,w2,h2,
177 short x2,y2,w2,h2; local
234 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
254 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
301 short x2, y2, w2, h2; local
309 x2 = y2 = 0;
313 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2)
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 83 Packet4f y, y1, y2; local
86 y2 = pmadd(p4f_cephes_log_p6, x, p4f_cephes_log_p7);
89 y2 = pmadd(y2, x, p4f_cephes_log_p8);
91 y = pmadd(y, x3, y2);
98 y2 = pmul(e, p4f_cephes_log_q2);
100 x = padd(x, y2);
342 Packet4f y2 = p4f_sincof_p0; local
343 y2 = pmadd(y2, z, p4f_sincof_p1)
430 Packet4f y2 = p4f_sincof_p0; local
    [all...]
  /external/chromium_org/cc/animation/
timing_function.h 36 double x2, double y2);
46 CubicBezierTimingFunction(double x1, double y1, double x2, double y2);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathElement.idl 45 float x, float y, float x1, float y1, float x2, float y2);
47 float x, float y, float x1, float y1, float x2, float y2);
68 float x, float y, float x2, float y2);
70 float x, float y, float x2, float y2);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h 50 VGfloat x1, y1, x2, y2; member in struct:arc
58 VGfloat x2, VGfloat y2,
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 50 VGfloat x1, y1, x2, y2; member in struct:arc
58 VGfloat x2, VGfloat y2,
bezier.h 35 float x2, y2; member in struct:bezier
52 float x2, float y2,
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
ip2_convolve3x3.rs 29 uint32_t y2 = max((int32_t)y-1, 0);
37 float4 p20 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y2));
38 float4 p21 = convert_float4(rsGetElementAt_uchar4(gIn, x, y2));
39 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
convolve3x3.rs 32 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]);

Completed in 2438 milliseconds

1 23 4 5 6 7 8 91011>>