HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 401 - 425 of 753) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 341 const GLfloat x1 = (GLfloat)(x + width); local
348 const GLfloat clip_x1 = (GLfloat)(x1 / fb_width * 2.0 - 1.0);
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 45 GLfloat x1, y1; /* end */ member in struct:LineInfo
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
89 compute_plane(GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1,
94 const GLfloat px = x1 - x0;
110 const GLfloat px = x1 - x0;
345 const GLfloat x1 = line->x0 + t1 * line->dx; local
353 line->qx2 = x1 + line->yAdj;
355 line->qx3 = x1 - line->yAdj;
372 if (x0 < x1) {
374 xRight = x1 + line->halfWidth
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 52 ushort x1, y1, x2, y2; member in struct:_CvRect16u
    [all...]
cvsegmentation.cpp 445 int x0 = j, y0 = i, x1, y1, iter; local
519 x1 = cvRound(sx*icount);
525 stop_flag = (x0 == x1 && y0 == y1) || abs(x1-x0) + abs(y1-y0) +
529 x0 = x1; y0 = y1;
cvstereobm.cpp 252 int x0 = x - wsz2 - 1, x1 = x + wsz2; local
254 uchar* cbuf = cbuf0 + ((x1 + wsz2 + 1) % (wsz + 1))*cstep - dy0*ndisp;
257 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep;
258 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep;
458 int x0 = x - wsz2 - 1, x1 = x + wsz2; local
460 uchar* cbuf = cbuf0 + ((x1 + wsz2 + 1) % (wsz + 1))*cstep - dy0*ndisp;
463 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep;
464 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep;
cvtemplmatch.cpp 208 int x1 = MAX( 0, x0 ), y1 = MAX( 0, y0 ), x2, y2; local
221 src = cvGetSubRect( img, &sstub, cvRect(x1,y1,x2-x1,y2-y1) );
226 if( x2 - x1 < isz.width || y2 - y1 < isz.height )
228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 ));
234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf );
244 cvCopyMakeBorder( dst1, dst, cvPoint(x1 - x0, y1 - y0), IPL_BORDER_REPLICATE );
  /external/pixman/pixman/
pixman-matrix.c 592 int x1, y1, x2, y2; local
594 v[0].vector[0] = F (b->x1);
606 v[3].vector[0] = F (b->x1);
615 x1 = pixman_fixed_to_int (v[i].vector[0]);
622 b->x1 = x1;
629 if (x1 < b->x1) b->x1 = x1;
1019 int x1, y1, x2, y2; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.c 875 int x1,x2; local
877 x1 = rects[i].x & ~15;
885 source += x1;
889 destination += x1;
893 x2-x1, rects[i].h,
1232 /* Calculate icon(x1,y1,x2,y2) relative to screen */
1271 int x1,x2; local
1273 x1 = (rect[0]-wind_pxy[0]) & ~15;
1281 src += x1;
1285 dest += x1;
    [all...]
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 58 static double x1; // x[n-1] variable
94 x1 = 0.0f;
107 out0 = (m_fa*x0) + (m_fb*x1) + (m_fc*x2) + (m_fd*out1) + (m_fe*out2);
109 x2 = x1;
110 x1 = x0;
  /frameworks/base/core/java/android/view/
GestureDetector.java 497 final float x1 = mVelocityTracker.getXVelocity(id1); local
503 final float x = x1 * mVelocityTracker.getXVelocity(id2);
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 266 final float x1 = VelocityTrackerCompat.getXVelocity(mVelocityTracker, id1); local
272 final float x = x1 * VelocityTrackerCompat.getXVelocity(mVelocityTracker, id2);
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
558 x1=H[3]*x[0]+H[4]*x[1]+H[5];
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /packages/apps/Camera2/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
558 x1=H[3]*x[0]+H[4]*x[1]+H[5];
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 183 double x1 = cur.x; local
190 double delta = (x2 - x1);
192 double b = (x - x1) / delta;
277 double x1 = points[i].x; local
282 for (double x = x1; x < x2; x += 20) {
285 double delta = (x2 - x1);
287 double b = (x - x1) / delta;
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 272 final float x1 = from.left; // drag view t/l local
294 float x = (1f - t) * (1f - t) * (x1 - x1o) + 2 * (1f - t) * t * (x2 - x1o) +
  /packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java 369 final float x1 = from.left; // drag view t/l local
391 float x = (1f - t) * (1f - t) * (x1 - x1o) + 2 * (1f - t) * t * (x2 - x1o) +
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
558 x1=H[3]*x[0]+H[4]*x[1]+H[5];
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
DividedImageCanvas.java 355 int x1 = width / 2, y1 = 0, x2 = width/2, y2 = height; local
357 mCanvas.drawLine(x1, y1, x2, y2, sPaint);
360 protected void drawHorizontalDivider(int x1, int y1, int x2, int y2) {
362 mCanvas.drawLine(x1, y1, x2, y2, sPaint);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 84 int x1 = p.x; local
94 x1 += dragBounds.x;
98 int x2 = x1 + w;
101 if (x2 < bounds.x || y2 < bounds.y || x1 > bounds.x2() || y1 > bounds.y2()) {
110 addLeftSideMatch(x1, columnMatches, max);
112 addCenterColumnMatch(bounds, x1, y1, x2, y2, columnMatches, max);
126 addColumnGapMatch(bounds, x1, x2, columnMatches, max);
131 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE
135 x2 = x1 + w
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 328 int x1, y1, x2, y2; local
330 x1 = sourceBounds.x + 1 * sourceBounds.w / 4;
332 x1 = sourceBounds.x + 3 * sourceBounds.w / 4;
351 graphics.drawArrow(x1, y1, x2, y2, ARROW_SIZE);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 

Completed in 731 milliseconds

<<11121314151617181920>>