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

1 2 3

  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 33 int dx1; member in struct:content::__anon10455
78 gfx::Point delta(tests[i].dx1, tests[i].dy1);
  /external/opencv/cv/src/
_cvgeom.h 55 int icvIntersectLines( double x1, double dx1, double y1, double dy1,
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
217 dx1 = array[i1].pt.x - pt0.x;
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
225 temp_num = dx1 * dx2 + dy1 * dy2;
228 sqrt( ((double)dx1 * dx1 + (double)dy1 * dy1) *
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatriangle.c 211 const GLfloat dx1 = v2[0] - v1[0]; local
218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */
237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0]));
239 cross = dx1 + dy1;
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 211 const GLfloat dx1 = v2[0] - v1[0]; local
218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */
237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0]));
239 cross = dx1 + dy1;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 274 int dx1 = bounds.x - boundingBox.x; local
276 int dx2 = dx1 + bounds.width;
279 dx1 *= scale;
291 for (int dx = dx1, sx = sx1; dx < dx2; dx++, sx++) {
299 int dxDelta = dx2 - dx1;
304 for (int dx = dx1, sx = sx1; dx < dx2; dx++, sx = (dx - dx1) * sxDelta
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
matrix.h 304 VGfloat dx1, VGfloat dy1,
309 VGfloat ax = dx0 - dx1 + dx2 - dx3;
315 dx1 - dx0, dy1 - dy0, 0,
316 dx2 - dx1, dy2 - dy1, 0,
320 VGfloat ax1 = dx1 - dx2;
336 a = dx1 - dx0 + g * dx1;
368 VGfloat dx1, VGfloat dy1,
379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1,
vgu.c 387 VGfloat dx1, VGfloat dy1,
398 dx1, dy1,
413 VGfloat dx1, VGfloat dy1,
428 dx1, dy1,
renderer.h 154 int dx1, int dy1,
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 304 VGfloat dx1, VGfloat dy1,
309 VGfloat ax = dx0 - dx1 + dx2 - dx3;
315 dx1 - dx0, dy1 - dy0, 0,
316 dx2 - dx1, dy2 - dy1, 0,
320 VGfloat ax1 = dx1 - dx2;
336 a = dx1 - dx0 + g * dx1;
368 VGfloat dx1, VGfloat dy1,
379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1,
vgu.c 387 VGfloat dx1, VGfloat dy1,
398 dx1, dy1,
413 VGfloat dx1, VGfloat dy1,
428 dx1, dy1,
renderer.h 154 int dx1, int dy1,
  /external/qemu/hw/
ps2.c 285 int dx1, dy1, dz1; local
287 dx1 = s->mouse_dx;
291 if (dx1 > 127)
292 dx1 = 127;
293 else if (dx1 < -127)
294 dx1 = -127;
299 b = 0x08 | ((dx1 < 0) << 4) | ((dy1 < 0) << 5) | (s->mouse_buttons & 0x07);
301 ps2_queue(&s->common, dx1 & 0xff);
325 s->mouse_dx -= dx1;
  /external/chromium_org/third_party/mesa/src/include/VG/
vgu.h 112 VGfloat dx1, VGfloat dy1,
118 VGfloat dx1, VGfloat dy1,
  /external/mesa3d/include/VG/
vgu.h 112 VGfloat dx1, VGfloat dy1,
118 VGfloat dx1, VGfloat 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);
641 * @param dx1 The amount to add to the x-coordinate of the last point on
650 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
654 dx1 += mLastX;
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
683 private void rCubicTo(float dx1, float dy1, float dx2, float dy2,
688 dx1 += mLastX;
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
693 dx1 = p1.x - p0.x;
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...]
  /external/opencv/cvaux/src/
cvface.cpp 187 long dx1 = LeftEyeRect.x + LeftEyeRect.width/2 - MouthRect.x; local
193 (double)(dx1*dx1)/((double)MouthRect.width*MouthRect.width) +
decomppoly.cpp 153 int dx1, dy1, dx2, dy2;
194 dx1 = x2 - x1;
198 if( dx1 * dy2 - dx2 * dy1 < 0 ) // convex condition
288 } // if( dx1 * dy2 - dx2 * dy1 < 0 )
315 } // if( dx1 * dy2 - dx2 * dy1 < 0 ) else
  /frameworks/base/graphics/java/android/graphics/
Path.java 374 * @param dx1 The amount to add to the x-coordinate of the last point on
383 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
385 native_rQuadTo(mNativePath, dx1, dy1, dx2, dy2);
723 private static native void native_rQuadTo(int nPath, float dx1, float dy1,
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 252 int dx1 = bounds.x - boundingBox.x; local
254 int dx2 = dx1 + bounds.width;
257 dx1 *= scale;
267 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 243 double dx1 = 1; local
257 operations_from.AppendTranslate(dx1, dy1, dz1);
266 translate_from.Translate3d(dx1, dy1, dz1);
331 double dx1 = 1; local
345 operations_from.AppendTranslate(dx1, dy1, dz1);
353 from.Translate3d(dx1, dy1, dz1);
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 398 @param dx1 The amount to add to the x-coordinate of the last point on
407 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
414 void rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
447 @param dx1 The amount to add to the x-coordinate of the last point on
    [all...]

Completed in 766 milliseconds

1 2 3