Home
last modified time | relevance | path

Searched refs:yNew (Results 1 – 25 of 52) sorted by relevance

123

/dports/math/mathgl/mathgl-2.5/src/
H A Dfractal.cpp159 yNew += 2*c1*x*y; in mgl_horseshoe_var4()
185 yNew += c1*(sin(t)-cos(r)); in mgl_spiral_var9()
191 yNew += par[0]*r*cos(t); in mgl_hyperbolic_var10()
229 xNew += c1*y; yNew += c1*x; in mgl_fisheye_var16()
354 xNew += c1*x; yNew += c1*y; in mgl_ngon_var38()
403 xNew += c1*x; yNew += c1*y; in mgl_cross_var48()
427 xNew += c1*x; yNew += c1*y; in mgl_supershape_var50()
432 xNew += c1*x; yNew += c1*y; in mgl_flower_var51()
452 xNew += c1; yNew += c2; in mgl_bent2_var54()
624 else yNew += par[0]*y; in mgl_modulus_var68()
[all …]
/dports/games/3dc/3Dc/src/
H A Dpiece.c126 yNew == piece->xyzPos.yRank && in PieceMayMove()
213 thisMove.xyzAfter.yRank = yNew; in PieceMove()
248 Board[zNew][yNew][xNew] = NULL; in PieceMove()
251 Board[zNew][yNew][xNew] = piece; in PieceMove()
253 piece->xyzPos.yRank = yNew; in PieceMove()
277 Board[1][yNew][xRookDest] = Board[1][yNew][xRookSrc]; in PieceMove()
278 Board[1][yNew][xRookSrc] = NULL; in PieceMove()
291 yPawnSrc = (yNew > (RANKS/2) ? yNew-1 : yNew+1); in PieceMove()
448 yDiff = yNew - piece->xyzPos.yRank; in KingMayMove()
510 if (Board[1][yNew][xCur]) in KingMayMove()
[all …]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/afp/
H A DAFPRectanglePainter.java45 int yNew; in paint() local
64 lineDataInfo.setY1(yNew); in paint()
65 lineDataInfo.setY2(yNew); in paint()
71 lineDataInfo.setY1(yNew); in paint()
72 lineDataInfo.setY2(yNew); in paint()
77 yNew = Math.round((float)at.getTranslateX() + y); in paint()
78 lineDataInfo.setY1(yNew); in paint()
79 lineDataInfo.setY2(yNew); in paint()
85 yNew = Math.round((float)at.getTranslateY() + y); in paint()
86 lineDataInfo.setY1(yNew); in paint()
[all …]
H A DAFPBorderPainter.java183 int yNew; in paint() local
190 yNew = Math.round(y1); in paint()
191 lineDataInfo.setY1(yNew); in paint()
192 lineDataInfo.setY2(yNew); in paint()
195 yNew = Math.round(y1 + h3); in paint()
196 lineDataInfo.setY1(yNew); in paint()
197 lineDataInfo.setY2(yNew); in paint()
200 yNew = Math.round(y1 + h3 + h3); in paint()
201 lineDataInfo.setY1(yNew); in paint()
202 lineDataInfo.setY2(yNew); in paint()
/dports/misc/vxl/vxl-3.3.2/contrib/oxl/osl/
H A Dosl_canny_ox.cxx859 int xNew, yNew; in Final_followOX() local
860 if (Join_dotsOX(x, y, dx, dy, xNew, yNew)) in Final_followOX()
861 Final_followOX(xNew,yNew,xc,yc,grad,0); in Final_followOX()
888 int osl_canny_ox::Join_dotsOX(int x, int y, int dx, int dy, int& xNew, int& yNew) in Join_dotsOX() argument
904 if (thin_[x ][y+2*dy] >= edge_min_OX_) Set_intsOX(xNew, yNew, x , y+2*dy); in Join_dotsOX()
905 else if (thin_[x+1][y+2*dy] >= edge_min_OX_) Set_intsOX(xNew, yNew, x+1, y+2*dy); in Join_dotsOX()
906 else if (thin_[x-1][y+2*dy] >= edge_min_OX_) Set_intsOX(xNew, yNew, x-1, y+2*dy); in Join_dotsOX()
907 else if (thin_[x+2][y+2*dy] >= edge_min_OX_) Set_intsOX(xNew, yNew, x+2, y+2*dy); in Join_dotsOX()
908 else if (thin_[x-2][y+2*dy] >= edge_min_OX_) Set_intsOX(xNew, yNew, x-2, y+2*dy); in Join_dotsOX()
909 else if (thin_[x+2][y+ dy] >= edge_min_OX_) Set_intsOX(xNew, yNew, x+2, y+dy ); in Join_dotsOX()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono/solver/
H A DChSolverAPGD.cpp99 yNew.resize(nc); in Solve()
146 sysd.ShurComplementProduct(yNew, tmp, nullptr); // yNew = N * tmp = N * (gamma - gamma_hat) in Solve()
147 L = yNew.norm() / L; in Solve()
148 yNew.setZero(); //// RADU is this really necessary here? in Solve()
198 yNew = gammaNew + Beta * (gammaNew - gamma); in Solve()
213 yNew = gammaNew; // (27) y_(k+1) = gamma_(k+1) in Solve()
231 y = yNew; in Solve()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/analysis/polynomials/
H A DPolynomialFunctionLagrangeForm.java180 final double[] yNew = new double[y.length]; in evaluate() local
182 System.arraycopy(y, 0, yNew, 0, y.length); in evaluate()
184 MathArrays.sortInPlace(xNew, yNew); in evaluate()
186 verifyInterpolationArray(xNew, yNew, true); in evaluate()
187 return evaluateInternal(xNew, yNew, z); in evaluate()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/libpng/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
824 int xNew, yNew; in FillBitmap() local
853 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
855 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/multimedia/opentoonz/opentoonz-1.5.0/thirdparty/libpng-1.6.21/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
824 int xNew, yNew; in FillBitmap() local
853 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
855 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/libpng-1.5.5/contrib/visupng/
H A DVisualPng.c462 int xNew, yNew; in CenterAbout() local
496 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
497 if (yNew < rWorkArea.top) { in CenterAbout()
498 yNew = rWorkArea.top; in CenterAbout()
499 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
500 yNew = rWorkArea.bottom - hChild; in CenterAbout()
504 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
823 int xNew, yNew; in FillBitmap() local
852 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
854 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/emulators/mgba/mgba-0.9.2/src/third-party/libpng/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
828 int xNew, yNew;
861 for (yNew = 0; yNew < cyNewSize; yNew++)
863 yOld = yNew * cyImgSize / cyNewSize;
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/libs/libpng-src/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
828 int xNew, yNew;
861 for (yNew = 0; yNew < cyNewSize; yNew++)
863 yOld = yNew * cyImgSize / cyNewSize;
/dports/graphics/optipng/optipng-0.7.7/src/libpng/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
828 int xNew, yNew;
861 for (yNew = 0; yNew < cyNewSize; yNew++)
863 yOld = yNew * cyImgSize / cyNewSize;
/dports/devel/etl/synfig-1.2.2/gtkmm-osx/libpng-1.2.5/contrib/visupng/
H A DVisualPng.c458 int xNew, yNew; in CenterAbout() local
492 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
493 if (yNew < rWorkArea.top) { in CenterAbout()
494 yNew = rWorkArea.top; in CenterAbout()
495 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
496 yNew = rWorkArea.bottom - hChild; in CenterAbout()
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
817 int xNew, yNew; in FillBitmap() local
845 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
847 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/graphics/megapov/megapov-1.2.1/libraries/png/contrib/visupng/
H A DVisualPng.c458 int xNew, yNew; in CenterAbout() local
492 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
493 if (yNew < rWorkArea.top) { in CenterAbout()
494 yNew = rWorkArea.top; in CenterAbout()
495 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
496 yNew = rWorkArea.bottom - hChild; in CenterAbout()
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
817 int xNew, yNew; in FillBitmap() local
845 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
847 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/x11-toolkits/p5-Tk/Tk-804.035/PNG/libpng/contrib/visupng/
H A DVisualPng.c458 int xNew, yNew; in CenterAbout() local
492 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
493 if (yNew < rWorkArea.top) { in CenterAbout()
494 yNew = rWorkArea.top; in CenterAbout()
495 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
496 yNew = rWorkArea.bottom - hChild; in CenterAbout()
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
817 int xNew, yNew; in FillBitmap() local
845 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
847 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/graphics/synfig/synfig-1.2.2/gtkmm-osx/libpng-1.2.5/contrib/visupng/
H A DVisualPng.c458 int xNew, yNew; in CenterAbout() local
492 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
493 if (yNew < rWorkArea.top) { in CenterAbout()
494 yNew = rWorkArea.top; in CenterAbout()
495 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
496 yNew = rWorkArea.bottom - hChild; in CenterAbout()
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
817 int xNew, yNew; in FillBitmap() local
845 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
847 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/graphics/synfigstudio/synfig-1.2.2/gtkmm-osx/libpng-1.2.5/contrib/visupng/
H A DVisualPng.c458 int xNew, yNew; in CenterAbout() local
492 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
493 if (yNew < rWorkArea.top) { in CenterAbout()
494 yNew = rWorkArea.top; in CenterAbout()
495 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
496 yNew = rWorkArea.bottom - hChild; in CenterAbout()
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
817 int xNew, yNew; in FillBitmap() local
845 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
847 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/games/libretro-mgba/mgba-6186d45/src/third-party/libpng/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
828 int xNew, yNew;
861 for (yNew = 0; yNew < cyNewSize; yNew++)
863 yOld = yNew * cyImgSize / cyNewSize;
/dports/graphics/png/libpng-1.6.37/contrib/visupng/
H A DVisualPng.c463 int xNew, yNew; in CenterAbout() local
497 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
498 if (yNew < rWorkArea.top) { in CenterAbout()
499 yNew = rWorkArea.top; in CenterAbout()
500 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
501 yNew = rWorkArea.bottom - hChild; in CenterAbout()
505 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
828 int xNew, yNew;
861 for (yNew = 0; yNew < cyNewSize; yNew++)
863 yOld = yNew * cyImgSize / cyNewSize;
/dports/graphics/povray36/povray-3.6.1/libraries/png/contrib/visupng/
H A DVisualPng.c458 int xNew, yNew; in CenterAbout() local
492 yNew = rParent.top + ((hParent - hChild) /2); in CenterAbout()
493 if (yNew < rWorkArea.top) { in CenterAbout()
494 yNew = rWorkArea.top; in CenterAbout()
495 } else if ((yNew+hChild) > rWorkArea.bottom) { in CenterAbout()
496 yNew = rWorkArea.bottom - hChild; in CenterAbout()
500 return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | in CenterAbout()
817 int xNew, yNew; in FillBitmap() local
845 for (yNew = 0; yNew < cyNewSize; yNew++) in FillBitmap()
847 yOld = yNew * cyImgSize / cyNewSize; in FillBitmap()
/dports/science/chrono/chrono-7.0.1/src/chrono_multicore/solver/
H A DChSolverMulticoreAPGDREF.cpp62 yNew.resize(size); in Solve()
150 yNew = gammaNew + Beta * (gammaNew - gamma); in Solve()
186 yNew = gammaNew; in Solve()
203 y = yNew; in Solve()
/dports/math/openturns/openturns-1.18/python/doc/examples/meta_modeling/kriging_metamodel/
H A Dplot_kriging_sequential.py209 yNew = g(xNew) variable
211 Y.add(yNew)
230 yNew = g(xNew) variable
232 Y.add(yNew)
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/data-accessor-0.2.3/src/Data/Accessor/
H A DTuple.hs22 second3 = Accessor.fromLens $ \(x,yOld,z) -> (yOld, \yNew -> (x,yNew,z))
/dports/math/ogdf/OGDF/src/ogdf/upward/
H A DDominanceLayout.cpp153 double yNew = sin(alpha + m_angle)*r; in layout() local
156 GA.y(v) = yNew; in layout()
172 double yNew = sin(alpha + m_angle)*r; in layout() local
175 p.m_y = yNew; in layout()

123