HomeSort by relevance Sort by last modified time
    Searched refs:dy1 (Results 1 - 25 of 38) sorted by null

1 2

  /external/opencv/cv/src/
_cvgeom.h 55 int icvIntersectLines( double x1, double dx1, double y1, double dy1,
cvstereobm.cpp 183 int dy0 = MIN(_dy0, wsz2+1), dy1 = MIN(_dy1, wsz2+1); local
204 int cstep = (height + dy0 + dy1)*ndisp;
211 htext = (int*)cvAlignPtr((int*)(hsad0 + (height+dy1)*ndisp) + wsz2 + 2);
218 memset( hsad0 - dy0*ndisp, 0, (height + dy0 + dy1)*ndisp*sizeof(hsad0[0]) );
227 for( y = -dy0; y < height + dy1; y++, hsad += ndisp, cbuf += ndisp, lptr += sstep, rptr += sstep )
260 for( y = -dy0; y < height + dy1; y++, cbuf += ndisp, cbuf_sub += ndisp,
284 for( y = dy1; y <= wsz2; y++ )
285 htext[height+y] = htext[height+dy1-1];
305 hsad = hsad0 + MIN(y + wsz2, height+dy1-1)*ndisp;
391 int dy0 = MIN(_dy0, wsz2+1), dy1 = MIN(_dy1, wsz2+1) local
    [all...]
cvgeometry.cpp 114 icvIntersectLines( double x1, double dx1, double y1, double dy1,
117 double d = dx1 * dy2 - dx2 * dy1;
122 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; local
309 dx1 = pt.x - v0.x; dy1 = pt.y - v0.y;
312 if( dx1*dx + dy1*dy <= 0 )
313 dist_num = dx1*dx1 + dy1*dy1;
318 dist_num = (dy1*dx - dx1*dy);
336 dist_num = dy1*dx - dx1*dy
    [all...]
cvapprox.cpp 209 int dx1, dy1, dx2, dy2; local
218 dy1 = array[i1].pt.y - pt0.y;
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
225 temp_num = dx1 * dx2 + dy1 * dy2;
228 sqrt( ((double)dx1 * dx1 + (double)dy1 * dy1) *
cvsurf.cpp 87 int dy1 = src[k][1]*newSize/oldSize; local
90 dst[k].p0 = dy1*widthStep + dx1;
92 dst[k].p2 = dy1*widthStep + dx2;
94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1));
cvfundam.cpp 408 double dy1 = ptr[j].y - ptr[i].y; local
413 if( fabs(dx2*dy1 - dy2*dx1) < FLT_EPSILON*(fabs(dx1) + fabs(dy1) + fabs(dx2) + fabs(dy2)))
    [all...]
cvshapedescr.cpp 138 double dy1 = pt0.x - pt1.x; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 275 int dy1 = bounds.y - boundingBox.y; local
277 int dy2 = dy1 + bounds.height;
280 dy1 *= scale;
290 for (int dy = dy1, sy = sy1; dy < dy2; dy++, sy++) {
301 int dyDelta = dy2 - dy1;
302 for (int dy = dy1, sy = sy1; dy < dy2; dy++, sy = (dy - dy1) * syDelta / dyDelta
  /external/qemu/hw/
ps2.c 285 int dx1, dy1, dz1; local
288 dy1 = s->mouse_dy;
295 if (dy1 > 127)
296 dy1 = 127;
297 else if (dy1 < -127)
298 dy1 = -127;
299 b = 0x08 | ((dx1 < 0) << 4) | ((dy1 < 0) << 5) | (s->mouse_buttons & 0x07);
302 ps2_queue(&s->common, dy1 & 0xff);
326 s->mouse_dy -= dy1;
usb-hid.c 416 int dx1, int dy1, int dz1, int buttons_state)
422 s->dy += dy1;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 261 /*package*/ static void native_rQuadTo(int nPath, float dx1, float dy1, float dx2, float dy2) {
267 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
643 * @param dy1 The amount to add to the y-coordinate of the last point on
650 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
655 dy1 += mLastY;
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
683 private void rCubicTo(float dx1, float dy1, float dx2, float dy2,
689 dy1 += mLastY;
694 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 692 float dx1, dx2, dy1, dy2; local
694 dy1 = p1.y - p0.y;
697 if (dx1 * dy2 > dy1 * dx2) {
700 if (dx1 * dy2 < dy1 * dx2) {
703 if ((dx1 * dx2 < 0) || (dy1 * dy2 < 0)) {
706 if ((dx1 * dx1 + dy1 * dy1) < (dx2 * dx2 + dy2 * dy2)) {
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 283 * @param dy1 The amount to add to the y-coordinate of the last point on
290 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
292 native_rQuadTo(mNativePath, dx1, dy1, dx2, dy2);
626 private static native void native_rQuadTo(int nPath, float dx1, float dy1,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 252 int dy1 = bounds.y - boundingBox.y; local
254 int dy2 = dy1 + bounds.height;
257 dy1 *= scale;
266 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 294 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer);
299 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
  /external/opencv/cvaux/src/
decomppoly.cpp 153 int dx1, dy1, dx2, dy2;
195 dy1 = y2 - y1;
198 if( dx1 * dy2 - dx2 * dy1 < 0 ) // convex condition
288 } // if( dx1 * dy2 - dx2 * dy1 < 0 )
315 } // if( dx1 * dy2 - dx2 * dy1 < 0 ) else
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 107 float dy1 = 0; local
116 dy1 = mCurrentY - crop.bottom;
118 dy1 = mCurrentY - crop.top;
145 if (Math.sqrt(dx1*dx1 + dy1*dy1) > Math.sqrt(dx2*dx2 + dy2*dy2)){
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 131 qreal dx1 = 0, dx2 = 0, dy1 = 0, dy2 = 0; local
139 dy1 = -ctxShadow->offset().y();
141 clip.adjust(dx1, dx2, dy1, dy2);
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 440 int dy1 = Math.max(0, b1.getHeight() - targetHeight); local
445 dy1 / 2,
  /packages/apps/Gallery/src/com/android/camera/
Util.java 225 int dy1 = Math.max(0, b1.getHeight() - targetHeight); local
230 dy1 / 2,
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzEvents.m     [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 127 static void rQuadTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) {
129 SkScalar dy1_ = SkFloatToScalar(dy1);
  /external/skia/include/core/
SkPath.h 361 @param dy1 The amount to add to the y-coordinate of the last point on
368 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
402 @param dy1 The amount to add to the y-coordinate of the last point on
  /external/freetype/src/smooth/
ftgrays.c 1034 TPos dx1, dy1, dx2, dy2; local
    [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 

Completed in 815 milliseconds

1 2