Home
last modified time | relevance | path

Searched refs:maxdx (Results 1 – 25 of 39) sorted by path

12

/dports/astro/astrometry/astrometry.net-0.85/include/astrometry/
H A Dtweak.h68 double mindx, mindy, maxdx, maxdy; member
/dports/astro/astrometry/astrometry.net-0.85/solver/
H A Dtweak.c90 double *maxdx, double *maxdy) { in get_dydx_range() argument
92 *maxdx = -1e100; in get_dydx_range()
101 *maxdx = MAX(dx, *maxdx); in get_dydx_range()
111 double mindx, double mindy, double maxdx, double maxdy, in get_shift() argument
133 … int ix = hszi * ( (dx - mindx) / (maxdx - mindx) ); // compute deltax using implicit floor in get_shift()
161 *xshift = (xs / (double)hsz) * (maxdx - mindx) + mindx; in get_shift()
163 debug("get_shift: mindx=%g, maxdx=%g, mindy=%g, maxdy=%g\n", mindx, maxdx, mindy, maxdy); in get_shift()
172 rho*t->mindx, rho*t->mindy, rho*t->maxdx, rho*t->maxdy, in do_entire_shift_operation()
717 &t->mindx, &t->mindy, &t->maxdx, &t->maxdy); in tweak_advance_to()
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/blind/
H A Dtweak.c90 double *maxdx, double *maxdy) { in get_dydx_range() argument
92 *maxdx = -1e100; in get_dydx_range()
101 *maxdx = MAX(dx, *maxdx); in get_dydx_range()
111 double mindx, double mindy, double maxdx, double maxdy, in get_shift() argument
133 … int ix = hszi * ( (dx - mindx) / (maxdx - mindx) ); // compute deltax using implicit floor in get_shift()
161 *xshift = (xs / (double)hsz) * (maxdx - mindx) + mindx; in get_shift()
163 debug("get_shift: mindx=%g, maxdx=%g, mindy=%g, maxdy=%g\n", mindx, maxdx, mindy, maxdy); in get_shift()
172 rho*t->mindx, rho*t->mindy, rho*t->maxdx, rho*t->maxdy, in do_entire_shift_operation()
717 &t->mindx, &t->mindy, &t->maxdx, &t->maxdy); in tweak_advance_to()
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/include/astrometry/
H A Dtweak.h68 double mindx, mindy, maxdx, maxdy; member
/dports/cad/gmsh/gmsh-4.9.2-source/Geo/
H A DMElement.cpp266 double maxdx = 0.; in maxDistToStraight() local
275 if(dx > maxdx) maxdx = dx; in maxDistToStraight()
277 return maxdx; in maxDistToStraight()
/dports/cad/impact/Impact/src/gui/
H A DPostProcessor.java503 tf_max.setText("" + maxdx); in jbInit()
504 tfmax = maxdx; in jbInit()
786 maxdx=Math.max(maxdx,p.x); in load()
927 clip_panel.sl_x.setMaximum((int)(maxx+maxdx+Math.abs(maxx*0.2))); in load()
1066 vLinesColor.addElement(getGradient((float)mindx,(float)p21.x,(float)maxdx)); in draw()
1067 vLinesColor.addElement(getGradient((float)mindx,(float)p22.x,(float)maxdx)); in draw()
1192 vQuadColor.addElement(getGradient((float)mindx,(float)p21.x,(float)maxdx)); in draw()
1193 vQuadColor.addElement(getGradient((float)mindx,(float)p22.x,(float)maxdx)); in draw()
1194 vQuadColor.addElement(getGradient((float)mindx,(float)p23.x,(float)maxdx)); in draw()
3429 else if(cb_result.getSelectedIndex()==1){max=maxdx; min=mindx;} in draw()
[all …]
/dports/deskutils/coolreader/coolreader-cr3.2.55/android/src/org/coolreader/crengine/
H A DReaderView.java4438 int maxdx = maxdistortdx * (PI_DIV_2 - SIN_TABLE_SCALE) / SIN_TABLE_SCALE; in drawDistorted() local
4453 if (dx < maxdx) { in drawDistorted()
4455 int index = dx >= 0 ? dx * SIN_TABLE_SIZE / maxdx : 0; in drawDistorted()
/dports/games/openbor/openbor-3caaddd5/engine/
H A Dopenbor.c27987 float maxdz, mindz, maxdx, mindx; in common_try_avoid() local
28002 maxdx = self->modeldata.animation[randomatk]->range.x.max - self->modeldata.speed; in common_try_avoid()
28003 if(maxdx < videomodes.hRes / 5) in common_try_avoid()
28005 maxdx = videomodes.hRes / 5; in common_try_avoid()
28007 mindx = maxdx - 10; in common_try_avoid()
28018 maxdx = videomodes.hRes / 2; in common_try_avoid()
28038 …lf->position.x < target->position.x) ? (target->position.x - maxdx) : (target->position.x + maxdx); in common_try_avoid()
28040 else if (dx > maxdx) in common_try_avoid()
/dports/games/openbor3482/openbor-2c1ecd7/engine/
H A Dopenbor.c15724 float maxdz, mindz, maxdx, mindx; in common_try_avoid() local
15745 maxdx = videomodes.hRes / 2; in common_try_avoid()
15759 else if (dx > maxdx) in common_try_avoid()
/dports/games/openbor3711/openbor-6ec17fa/engine/
H A Dopenbor.c16288 float maxdz, mindz, maxdx, mindx; in common_try_avoid() local
16299 maxdx = self->modeldata.animation[randomatk]->range.xmax-self->modeldata.speed; in common_try_avoid()
16300 if(maxdx<videomodes.hRes/5) maxdx = videomodes.hRes / 5; in common_try_avoid()
16301 mindx = maxdx - 10; in common_try_avoid()
16307 maxdx = videomodes.hRes / 2; in common_try_avoid()
16321 self->destx = (self->x < target->x)? (target->x-maxdx): (target->x + maxdx); in common_try_avoid()
16322 }else if (dx > maxdx){ in common_try_avoid()
/dports/games/openbor3979/openbor-2bcf25b/engine/
H A Dopenbor.c22311 float maxdz, mindz, maxdx, mindx; in common_try_avoid() local
22326 maxdx = self->modeldata.animation[randomatk]->range.xmax - self->modeldata.speed; in common_try_avoid()
22327 if(maxdx < videomodes.hRes / 5) in common_try_avoid()
22329 maxdx = videomodes.hRes / 5; in common_try_avoid()
22331 mindx = maxdx - 10; in common_try_avoid()
22342 maxdx = videomodes.hRes / 2; in common_try_avoid()
22362 self->destx = (self->x < target->x) ? (target->x - maxdx) : (target->x + maxdx); in common_try_avoid()
22364 else if (dx > maxdx) in common_try_avoid()
/dports/games/openbor4432/openbor-ba1eb4f/engine/
H A Dopenbor.c25537 float maxdz, mindz, maxdx, mindx; in common_try_avoid() local
25552 maxdx = self->modeldata.animation[randomatk]->range.max.x - self->modeldata.speed; in common_try_avoid()
25553 if(maxdx < videomodes.hRes / 5) in common_try_avoid()
25555 maxdx = videomodes.hRes / 5; in common_try_avoid()
25557 mindx = maxdx - 10; in common_try_avoid()
25568 maxdx = videomodes.hRes / 2; in common_try_avoid()
25588 …lf->position.x < target->position.x) ? (target->position.x - maxdx) : (target->position.x + maxdx); in common_try_avoid()
25590 else if (dx > maxdx) in common_try_avoid()
/dports/games/rockdodger/rockdodger-1.1.4/
H A Dblubats.c296 const float maxdx = 35; in activate_one_dropping() local
302 if(bptr->dx > maxdx) { in activate_one_dropping()
303 x = bptr->dx / maxdx; //Scaling factor, otherwise our blubats always miss... in activate_one_dropping()
304 bptr->dx = maxdx; in activate_one_dropping()
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/VOX/Source/
H A Dvox3d.c88 fix maxdx; in vx_render() local
160maxdx = (psx<<1) + (vx->w*fix_abs(tmp[1]->sx) + vx->h*fix_abs(tmp[2]->sx) + vx->d*fix_abs(tmp[3]->… in vx_render()
165 if ((maxdy < 0) || (maxdx < 0)) { in vx_render()
170 maxdx = maxdx >> 1; in vx_render()
179 clip = ((tmp[0]->sx - maxdx) < 0) || ((tmp[0]->sx + maxdx) > fix_make(grd_bm.w,0)) || in vx_render()
/dports/graphics/dataplot/dataplot-2c1b27601a3b7523449de612613eadeead9a8f70/lib/macros/
H A DCOMPARATIVE_K1_ANALYSIS.DP50 delete maxdx; let maxdx = maximum dx
58 let upperxz = maxdx
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/formula/definition/
H A Dfractal_transf_difs_hexprism.cpp72 double maxdx = max(dx, 0.0); in FormulaCode() local
75 tp = sqrt(maxdx * maxdx + maxdy * maxdy); in FormulaCode()
H A Dfractal_transf_difs_hexprism_v2.cpp103 double maxdx = max(dx, k.x); in FormulaCode() local
106 tp = sqrt(maxdx * maxdx + maxdy * maxdy); in FormulaCode()
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/formula/opencl/
H A Dtransf_difs_hexprism.cl61 REAL maxdx = max(dx, 0.0f);
64 tp = native_sqrt(maxdx * maxdx + maxdy * maxdy);
H A Dtransf_difs_hexprism_v2.cl92 REAL maxdx = max(dx, k.x);
95 tp = native_sqrt(maxdx * maxdx + maxdy * maxdy);
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Documentation/commands/
H A Ddeform-mesh.rst132 .. option:: -max-dx, -maxdx, -dx <value>...
/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/liboslexec/
H A Dllvm_gen.cpp828 llvm::Value *maxdx = rop.llvm_load_value (Max, 1, i, type); in LLVMGEN() local
830 valdx = rop.ll.op_select (cond, maxdx, valdx); in LLVMGEN()
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/liboslexec/
H A Dllvm_gen.cpp828 llvm::Value *maxdx = rop.llvm_load_value (Max, 1, i, type); in LLVMGEN() local
830 valdx = rop.ll.op_select (cond, maxdx, valdx); in LLVMGEN()
/dports/lang/slib/slib-3b6/
H A Ddiffer.scm157 (define (fp:init! fp fpoff fill mindx maxdx)
159 (do ((idx (+ fpoff maxdx) (+ -1 idx)))
322 (let ((maxdx (if (negative? p-lim) (+ 1 N) (+ 1 p-lim (- N M))))
324 (fp:init! fp (- mindx) -1 mindx maxdx)
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/gra/
H A Dgraphical.c1954 { int maxdx=0, maxdy=0; in getHandlesGraphical() local
1965 maxdx = (valInt(distance) * valInt(gr->area->w) + 99) / 100; in getHandlesGraphical()
1982 if ( abs(hx-px) > maxdx || abs(hy-py) > maxdy ) in getHandlesGraphical()
2005 if ( abs(hx-px) > maxdx || abs(hy-py) > maxdy ) in getHandlesGraphical()
/dports/math/gecode/gecode-0916a1a/gecode/flatzinc/
H A Dregistry.cpp1491 int maxdx = iw[0]; in p_nooverlap() local
1495 maxdx = std::max(maxdx,iw[i]); in p_nooverlap()
1499 cumulative(s,maxdx+maxx-minx,y0,ih,iw); in p_nooverlap()

12