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

1 2 3

  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 35 int dx2; member in struct:content::__anon10455
83 EXPECT_EQ(delta, gfx::Point(tests[i].dx2, tests[i].dy2));
  /external/opencv/cv/src/
_cvgeom.h 56 double x2, double dx2, double y2, double dy2,
cvgeometry.cpp 115 double x2, double dx2, double y2, double dy2, double *t2 )
117 double d = dx1 * dy2 - dx2 * dy1;
295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; local
310 dx2 = pt.x - v.x; dy2 = pt.y - v.y;
314 else if( dx2*dx + dy2*dy >= 0 )
315 dist_num = dx2*dx2 + dy2*dy2;
cvlinefit.cpp 49 double dx2, dy2, dxy; local
87 dx2 = x2 - x * x;
91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2;
108 float dx2, dy2, dz2, dxy, dxz, dyz; local
170 dx2 = x2 - x0 * x0;
181 det[4] = dx2 + dz2;
185 det[8] = dy2 + dx2;
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 44 SkFixed dx2 = dx+dx; local
45 SkFixed dx4 = dx2+dx2;
  /external/skia/src/opts/
SkBitmapProcState_matrixProcs_neon.cpp 44 SkFixed dx2 = dx+dx; local
45 SkFixed dx4 = dx2+dx2;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf.h 68 struct brw_reg dx2; member in struct:brw_sf_compile
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.h 68 struct brw_reg dx2; member in struct:brw_sf_compile
  /external/chromium_org/third_party/mesa/src/include/VG/
vgu.h 113 VGfloat dx2, VGfloat dy2,
119 VGfloat dx2, VGfloat dy2,
  /external/mesa3d/include/VG/
vgu.h 113 VGfloat dx2, VGfloat dy2,
119 VGfloat dx2, VGfloat dy2,
  /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);
645 * @param dx2 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) {
656 dx2 += mLastX;
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
683 private void rCubicTo(float dx1, float dy1, float dx2, float dy2,
690 dx2 += mLastX;
694 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatriangle.c 213 const GLfloat dx2 = v0[0] - v2[0]; local
247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0]));
249 cross = dx2 + dy2;
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 213 const GLfloat dx2 = v0[0] - v2[0]; local
247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0]));
249 cross = dx2 + dy2;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 276 int dx2 = dx1 + bounds.width; local
281 dx2 *= 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 306 VGfloat dx2, VGfloat dy2,
309 VGfloat ax = dx0 - dx1 + dx2 - dx3;
316 dx2 - dx1, dy2 - dy1, 0,
320 VGfloat ax1 = dx1 - dx2;
321 VGfloat ax2 = dx3 - dx2;
369 VGfloat dx2, VGfloat dy2,
380 dx2, dy2, dx3, dy3,
vgu.c 388 VGfloat dx2, VGfloat dy2,
399 dx2, dy2,
414 VGfloat dx2, VGfloat dy2,
429 dx2, dy2,
renderer.h 155 int dx2, int dy2,
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 692 float dx1, dx2, dy1, dy2; local
695 dx2 = p2.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/mesa3d/src/gallium/state_trackers/vega/
matrix.h 306 VGfloat dx2, VGfloat dy2,
309 VGfloat ax = dx0 - dx1 + dx2 - dx3;
316 dx2 - dx1, dy2 - dy1, 0,
320 VGfloat ax1 = dx1 - dx2;
321 VGfloat ax2 = dx3 - dx2;
369 VGfloat dx2, VGfloat dy2,
380 dx2, dy2, dx3, dy3,
vgu.c 388 VGfloat dx2, VGfloat dy2,
399 dx2, dy2,
414 VGfloat dx2, VGfloat dy2,
429 dx2, dy2,
renderer.h 155 int dx2, int dy2,
  /external/opencv/cvaux/src/
cvface.cpp 188 long dx2 = RightEyeRect.x + RightEyeRect.width/2 - MouthRect.x - MouthRect.width; local
194 (double)(dx2*dx2)/((double)MouthRect.width*MouthRect.width);
  /frameworks/base/graphics/java/android/graphics/
Path.java 378 * @param dx2 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);
724 float dx2, float dy2);
  /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/chromium_org/cc/animation/
transform_operations_unittest.cc 251 double dx2 = 10; local
261 operations_to.AppendTranslate(dx2, dy2, dz2);
271 translate_to.Translate3d(dx2, dy2, dz2);
339 double dx2 = 10; local
348 operations_to.AppendTranslate(dx2, dy2, dz2);
356 to.Translate3d(dx2, dy2, dz2);

Completed in 855 milliseconds

1 2 3