HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 101 - 125 of 888) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libvncserver/libvncserver/
scale.h 6 void rfbScaledScreenUpdate(rfbScreenInfoPtr screen, int x1, int y1, int x2, int y2);
  /external/opencv/cvaux/src/
decomppoly.cpp 152 int x1, y1, x2, y2, x3, y3;
188 y2 = contour[ index2 ].y;
195 dy1 = y2 - y1;
197 dy2 = y3 - y2;
246 y2 = y3;
268 y1 = y2;
271 y2 = y3;
297 y1 = y2;
300 y2 = y3;
339 int x1_left = 0, y1_left = 0, x1_right = 0, y1_right = 0, x2, y2;
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftbbox.c 139 /* y2 :: The coordinate of the control point. */
150 FT_Pos y2,
157 /* within the segment, equal to (y1*y3 - y2*y2)/(y1 - 2*y2 + y3). */
158 /* Or, offsetting from y2, we get */
160 y1 -= y2;
161 y3 -= y2;
162 y2 += FT_MulDiv( y1, y3, y1 + y3 );
164 if ( y2 < *min
    [all...]
  /external/python/cpython2/Demo/turtle/
tdemo_chaos.py 23 def line(x1, y1, x2, y2):
26 goto(x2, y2)
  /external/skia/bench/
CubicKLMBench.cpp 18 SkScalar x2, SkScalar y2, SkScalar x3, SkScalar y3) {
21 fPoints[2].set(x2, y2);
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 155 audio_sample_t y2 = mDelays[0][3]; local
168 acc = mac_coef_sample(a2, y2, acc);
170 y2 = y1;
179 mDelays[0][3] = y2;
213 audio_sample_t y2 = mDelays[ch][3]; local
221 acc = mac_coef_sample(a2, y2, acc);
223 y2 = y1;
234 mDelays[ch][3] = y2;
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
grain.rs 48 uint32_t y2 = (y+1) & gHMask;
56 uint p20 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y2);
57 uint p21 = 114 * rsGetElementAt_uchar(gBlendSource, x, y2);
58 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
grain.rs 48 uint32_t y2 = (y+1) & gHMask;
56 uint p20 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y2);
57 uint p21 = 114 * rsGetElementAt_uchar(gBlendSource, x, y2);
58 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
grain.rs 48 uint32_t y2 = (y+1) & gHMask;
56 uint p20 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y2);
57 uint p21 = 114 * rsGetElementAt_uchar(gBlendSource, x, y2);
58 uint p22 = 56 * rsGetElementAt_uchar(gBlendSource, x2, y2);
  /packages/apps/DevCamera/src/com/android/devcamera/
PreviewOverlay.java 186 float y2 = 0.5f * previewH; local
201 canvas.drawCircle(x2, y2, mLens * 0.25f * previewW, mPaint2);
204 canvas.drawText(text, x2, y2 - mLens * 0.25f * previewW - 7f, mPaint);
235 float x1, x2, y1, y2; local
256 y1 = y2 = previewH / 2 + focalLengthH * (float) Math.tan(i);
257 canvas.drawLine(x1, y1, x2, y2, mPaint);
264 y2 = previewH;
265 canvas.drawLine(x1, y1, x2, y2, mPaint);
  /external/skia/experimental/docs/
interpolatorFunctions.js 27 var x1 = curve[0], y1 = curve[1], x2 = curve[2], y2 = curve[3];
31 var ay = interp_cubic_coords(y1, y2, y3, y4, t1);
33 var ey = interp_cubic_coords(y1, y2, y3, y4, (t1*2+t2)/3);
35 var fy = interp_cubic_coords(y1, y2, y3, y4, (t1+t2*2)/3);
37 var dy = interp_cubic_coords(y1, y2, y3, y4, t2);
  /external/fio/
graph.c 242 double x1, y1, x2, y2; local
256 y2 = bg->ydim * 0.90;
258 y1 = y2 - (((v - mindata) / domain) * range);
260 cairo_line_to(cr, x1, y2);
261 cairo_line_to(cr, x2, y2);
271 double *y1, double *x2, double *y2)
281 *y2 = 0.90 * g->ydim;
293 cairo_line_to(cr, *x2 + offset, *y2 - offset);
301 cairo_line_to(cr, *x1, *y2);
302 cairo_line_to(cr, *x2, *y2);
438 double x1, y1, x2, y2; local
529 double x1, y1, x2, y2; local
    [all...]
  /external/libpng/contrib/tools/
genpng.c 18 * shape ::= color width shape x1 y1 x2 y2
42 * shape ::= color width shape x1 y1 x2 y2
52 * y2 ::= <number>
179 double x1, y1, x2, y2; member in struct:arg
347 square_check(double x, double y, double x1, double y1, double x2, double y2)
348 /* Is x,y inside the square (x1,y1)..(x2,y2)? */
353 * x<x1 | x<y1 | x<x2 | x<y2
359 * So 'inside' is (x<x1) != (x<x2) && (y<y1) != (y<y2);
361 return ((x<x1) ^ (x<x2)) & ((y<y1) ^ (y<y2));
367 return square_check(x, y, arg->x1, arg->y1, arg->x2, arg->y2);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
BicubicSplineInterpolatingFunction.java 402 final double y2 = y * y; local
403 final double y3 = y2 * y;
404 final double[] pY = {1, y, y2, y3};
505 final double y2 = y * y;
506 final double y3 = y2 * y;
507 final double[] pY = {1, y, y2, y3};
518 final double y2 = y * y;
519 final double[] pY = {0, 1, y, y2};
528 final double y2 = y * y;
529 final double y3 = y2 * y
    [all...]
  /external/pdfium/third_party/agg23/
agg_rasterizer_scanline_aa.cpp 163 AGG_INLINE void outline_aa::render_hline(int ey, int x1, int y1, int x2, int y2)
171 if(y1 == y2) {
176 delta = y2 - y1;
180 p = (poly_base_size - fx1) * (y2 - y1);
185 p = fx1 * (y2 - y1);
201 p = poly_base_size * (y2 - y1 + delta);
222 delta = y2 - y1;
225 void outline_aa::render_line(int x1, int y1, int x2, int y2)
231 int cy = (y1 + y2) >> 1;
233 render_line(cx, cy, x2, y2);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 71 gc.drawLine(x, b.y, x, b.y2());
91 int y2 = b.y2() - MARGIN_SIZE; local
92 for (int y = y1; y < y2; y += GRID_SIZE) {
193 int y2; local
196 y2 = rowMatch.matchedLine - rowMatch.margin;
200 y2 = rowMatch.matchedLine + rowMatch.margin;
203 gc.drawLine(b.x, y2, b.x2(), y2);
205 centerX - 3, y1 + (y2 - y1 - 16) / 2)
    [all...]
  /device/google/dragon/audio/hal/dsp/
crossover2.c 38 float32x4_t y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}; local
60 "vmls.f32 q1, %q[a2], %q[y2] \n"
62 "vmla.f32 q2, %q[b2], %q[y2] \n"
63 "vmov.f32 %q[y2], %q[y1] \n"
83 [y2]"+w"(y2),
104 lp->y2L = y2[0]; lp->y2R = y2[2];
111 hp->y2L = y2[1]; hp->y2R = y2[3]
124 __m128 y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}; local
322 float32x4_t y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}; local
402 __m128 y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}; local
    [all...]
  /external/libvncserver/test/
encodingstest.c 226 y1=(rand()%(server->height-1)),y2=(rand()%(server->height-1)); local
228 if(y1>y2) { i=y1; y1=y2; y2=i; }
229 x2++; y2++;
232 for(j=y1;j<y2;j++)
233 server->frameBuffer[i*4+c+j*server->paddedWidthInBytes]=255*(i-x1+j-y1)/(x2-x1+y2-y1);
235 rfbMarkRectAsModified(server,x1,y1,x2,y2);
238 rfbLog("Sent update (%d,%d)-(%d,%d)\n",x1,y1,x2,y2);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * y1= y with lower 32 bits chopped, y2 = y-y1.
57 double a,b,t1,t2,y1,y2,w; local
114 y2 = b - y1;
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 25 float a,b,t1,t2,y1,y2,w; local
74 y2 = b - y1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
32 * y1= y with lower 32 bits chopped, y2 = y-y1.
55 double a=x,b=y,t1,t2,y1,y2,w; local
104 y2 = b - y1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
move.pass.cpp 89 int y2 = 500; local
91 T t2(x2, std::move(y2));
95 assert(std::get<1>(t) == y2);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
GridOccupancy.java 63 int y2 = y + spanY - 1; local
64 if (x < 0 || y < 0 || x2 >= mCountX || y2 >= mCountY) {
68 for (int j = y; j <= y2; j++) {
  /external/opencv/cv/src/
_cvgeom.h 56 double x2, double dx2, double y2, double dy2,
  /external/skia/include/c/
sk_path.h 52 (x0,y0) and (x1,y1), and ending at (x2,y2). If no
59 float x2, float y2);

Completed in 4295 milliseconds

1 2 3 45 6 7 8 91011>>