Home
last modified time | relevance | path

Searched refs:oldx (Results 1 – 8 of 8) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
DMullerSolver.java221 double oldx = Double.POSITIVE_INFINITY; in solve() local
241 if (FastMath.abs(x - oldx) <= tolerance) { in solve()
264 oldx = x; in solve()
275 oldx = Double.POSITIVE_INFINITY; in solve()
360 double oldx = Double.POSITIVE_INFINITY; in solve2() local
389 oldx = Double.POSITIVE_INFINITY; in solve2()
395 if (FastMath.abs(x - oldx) <= tolerance) { in solve2()
411 oldx = x; in solve2()
DRiddersSolver.java193 double oldx = Double.POSITIVE_INFINITY; in solve() local
210 if (FastMath.abs(x - oldx) <= tolerance) { in solve()
242 oldx = x; in solve()
/external/libvncserver/examples/
Dexample.c63 int oldx,oldy; member
134 x,y,cd->oldx,cd->oldy); in doptr()
136 if(x1>cd->oldx) x1++; else cd->oldx++; in doptr()
138 rfbMarkRectAsModified(cl->screen,x,y,cd->oldx,cd->oldy); in doptr()
158 cd->oldx=x; cd->oldy=y; cd->oldButton=buttonMask; in doptr()
201 int x1=cd->oldx,y1=cd->oldy,x2,y2; in dokey()
202 …cd->oldx+=rfbDrawCharWithClip(cl->screen,&radonFont,cd->oldx,cd->oldy,(char)key,0,0,cl->screen->wi… in dokey()
/external/valgrind/helgrind/tests/
Dtc08_hbl2.c155 int oldx = 0; in child_fn() local
160 if (x != oldx) { in child_fn()
161 oldx = x; in child_fn()
162 printf("child: new value %d\n", oldx); in child_fn()
/external/skia/src/core/
DSkEdge.cpp277 SkFixed oldx = fQx; in updateQuadratic() local
289 newx = oldx + (dx >> shift); in updateQuadratic()
299 success = this->updateLine(oldx, oldy, newx, newy); in updateQuadratic()
300 oldx = newx; in updateQuadratic()
438 SkFixed oldx = fCx; in updateCubic() local
449 newx = oldx + (fCDx >> dshift); in updateCubic()
470 success = this->updateLine(oldx, oldy, newx, newy); in updateCubic()
471 oldx = newx; in updateCubic()
/external/jdiff/src/jdiff/
DDiffMyers.java144 int x, y, oldx, tlo = fd[fdiagoff + d - 1], thi = fd[fdiagoff + d + 1]; in diag() local
150 oldx = x; in diag()
155 if (x - oldx > 20) in diag()
176 int x, y, oldx, tlo = bd[bdiagoff + d - 1], thi = bd[bdiagoff + d + 1]; in diag() local
182 oldx = x; in diag()
187 if (oldx - x > 20) in diag()
/external/opencv3/3rdparty/libjasper/
Djas_image.c1059 jas_image_coord_t oldx; in jas_image_sampcmpt() local
1104 oldx = (ax - oldcmpt->tlx_) / oldcmpt->hstep_; in jas_image_sampcmpt()
1107 oldx = (bx - oldcmpt->tlx_) / oldcmpt->hstep_; in jas_image_sampcmpt()
1110 oldx = (bx - oldcmpt->tlx_) / oldcmpt->hstep_; in jas_image_sampcmpt()
1113 oldx = (ax - oldcmpt->tlx_) / oldcmpt->hstep_; in jas_image_sampcmpt()
1116 assert(oldx >= 0 && oldx < oldcmpt->width_ && in jas_image_sampcmpt()
1119 (oldy * oldcmpt->width_ + oldx), SEEK_SET) < 0) in jas_image_sampcmpt()
/external/opencv3/doc/pattern_tools/
Dsvgfig.py1494 oldx, oldy = x, y
1514 centerx, centery = (x + oldx)/2., (y + oldy)/2.