Home
last modified time | relevance | path

Searched refs:lstep (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/tracking/src/
H A Dprecomp.hpp78 inline callHalCholesky( _Tp* L, size_t lstep, int lsize );
81 inline callHalCholesky<float>( float* L, size_t lstep, int lsize ) in callHalCholesky() argument
83 return hal::Cholesky32f(L, lstep, lsize, NULL, 0, 0); in callHalCholesky()
87 inline callHalCholesky<double>( double* L, size_t lstep, int lsize) in callHalCholesky() argument
89 return hal::Cholesky64f(L, lstep, lsize, NULL, 0, 0); in callHalCholesky()
93 inline choleskyDecomposition( const _Tp* A, size_t astep, int asize, _Tp* L, size_t lstep ) in choleskyDecomposition() argument
98 lstep /= sizeof(_Tp); in choleskyDecomposition()
102 L[i*lstep + j] = A[i*astep + j]; in choleskyDecomposition()
104 success = callHalCholesky(L, lstep*sizeof(_Tp), asize); in choleskyDecomposition()
110 L[i*lstep + j] = 0.0; in choleskyDecomposition()
/dports/graphics/vigra/vigra-8acd73a/include/vigra/
H A Dclebsch-gordan.hxx147 lstep = 1; in ThreeJSymbolM()
149 ++lstep; in ThreeJSymbolM()
160 if (lstep - 2 > 0) in ThreeJSymbolM()
166 if (lstep > 2) in ThreeJSymbolM()
175 if (lstep == nfin) in ThreeJSymbolM()
183 x = c1 * thrcof[lstep-1] + c2 * thrcof[lstep-2]; in ThreeJSymbolM()
184 thrcof[lstep] = x; in ThreeJSymbolM()
239 lstep = 1; in ThreeJSymbolM()
241 ++lstep; in ThreeJSymbolM()
250 if (lstep > 2) in ThreeJSymbolM()
[all …]
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/lac/
H A Dsolver_control.cc39 , lstep(numbers::invalid_unsigned_int) in SolverControl()
65 lstep = step; in check()
129 return lstep; in last_step()
171 if (lstep == 0) in average_reduction()
179 return std::pow(history_data[lstep] / history_data[0], 1. / lstep); in average_reduction()
189 Assert(step <= lstep, ExcIndexRange(step, 1, lstep + 1)); in step_reduction()
190 Assert(step > 0, ExcIndexRange(step, 1, lstep + 1)); in step_reduction()
199 return step_reduction(lstep); in final_reduction()
278 lstep = step; in check()
331 lstep = step; in check()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/components/curveeditor/detail/
H A Daxis.cpp128 LabelingInfo optLegibility(int k, double lmin, double lstep) in optLegibility() argument
132 stepSequence.push_back(lmin + i * lstep); in optLegibility()
178 auto lstep = q * static_cast<double>(j) * std::pow(10, z); in compute() local
179 auto covMax = coverageMax(dmin, dmax, lstep * (k - 1)); in compute()
183 int start = (std::floor(dmax / lstep) - (k - 1)) * j; in compute()
184 int end = std::ceil(dmin / lstep) * j; in compute()
186 double lmin = start * lstep / j; in compute()
187 double lmax = lmin + lstep * (k - 1); in compute()
196 auto info = optLegibility(k, lmin, lstep); in compute()
200 result = {lmin, lmax, lstep}; in compute()
/dports/astro/wcslib/wcslib-7.7/C/test/
H A Dttab2.c57 int i, j, k, l, l1, l2, l3, lstep, m, stat[NP*NP], status; in main() local
191 lstep = (abs((int)((v1-v0)/0.2f)) < 10) ? 20 : 40; in main()
192 for (l = -200; l <= 300; l += lstep) { in main()
205 lstep = (abs((int)((v1-v0)/0.2f)) < 10) ? 20 : 40; in main()
206 for (l = -200; l <= 300; l += lstep) { in main()
219 lstep = (abs((int)((v1-v0)/0.2f)) < 10) ? 20 : 40; in main()
220 for (l = -200; l <= 300; l += lstep) { in main()
233 lstep = (abs((int)((v1-v0)/0.2f)) < 10) ? 20 : 40; in main()
234 for (l = -200; l <= 300; l += lstep) { in main()
/dports/math/vtk8/VTK-8.2.0/Charts/Core/
H A DvtkAxisExtended.cxx45 double lmax, double lstep) in Simplicity() argument
51 double rem = fmod(lmin,lstep); in Simplicity()
52 if((rem < eps || (lstep - rem ) < eps ) && lmin <= 0 && lmax >= 0) in Simplicity()
278 double vtkAxisExtended::Legibility(double lmin, double lmax, double lstep, in Legibility() argument
282 int numTicks = static_cast<int>((lmax - lmin) / lstep); in Legibility()
287 tickPositions[i] = lmax + i*lstep; in Legibility()
310 double rem = fmod(lmin,lstep); in Legibility()
311 if((rem < eps || (lstep - rem ) < eps ) && lmin <=0 && lmax >=0) in Legibility()
371 double tickDistance = lstep * scaling; in Legibility()
488 double lstep = step; in GenerateExtendedTickLabels() local
[all …]
/dports/math/vtk9/VTK-9.1.0/Charts/Core/
H A DvtkAxisExtended.cxx44 int qIndex, int qLength, int j, double lmin, double lmax, double lstep) in Simplicity() argument
50 double rem = fmod(lmin, lstep); in Simplicity()
51 if ((rem < eps || (lstep - rem) < eps) && lmin <= 0 && lmax >= 0) in Simplicity()
276 int numTicks = static_cast<int>((lmax - lmin) / lstep); in Legibility()
281 tickPositions[i] = lmax + i * lstep; in Legibility()
304 double rem = fmod(lmin, lstep); in Legibility()
305 if ((rem < eps || (lstep - rem) < eps) && lmin <= 0 && lmax >= 0) in Legibility()
361 double tickDistance = lstep * scaling; in Legibility()
477 double lstep = step; in GenerateExtendedTickLabels() local
479 double s = Simplicity(qIndex, qLength, j, lmin, lmax, lstep); in GenerateExtendedTickLabels()
[all …]
/dports/math/vtk6/VTK-6.2.0/Charts/Core/
H A DvtkAxisExtended.cxx47 double lmax, double lstep) in Simplicity() argument
53 double rem = fmod(lmin,lstep); in Simplicity()
54 if((rem < eps || (lstep - rem ) < eps ) && lmin <= 0 && lmax >= 0) in Simplicity()
280 double vtkAxisExtended::Legibility(double lmin, double lmax, double lstep, in Legibility() argument
284 int numTicks = static_cast<int>((lmax - lmin) / lstep); in Legibility()
289 tickPositions[i] = lmax + i*lstep; in Legibility()
312 double rem = fmod(lmin,lstep); in Legibility()
313 if((rem < eps || (lstep - rem ) < eps ) && lmin <=0 && lmax >=0) in Legibility()
373 double tickDistance = lstep * scaling; in Legibility()
490 double lstep = step; in GenerateExtendedTickLabels() local
[all …]
/dports/math/R-cran-labeling/labeling/R/
H A Dlabeling.R62 lstep <- .heckbert.nicenum(range/(m-1), TRUE) functionVar
63 lmin <- floor(dmin/lstep)*lstep
64 lmax <- ceiling(dmax/lstep)*lstep
65 seq(lmin, lmax, by=lstep)
129 seq(best$lmin, best$lmax, by=best$lstep)
172 lstep=tdelta, globalVar
194 v <- ifelse( (lmin %% lstep < eps || lstep - (lmin %% lstep) < eps) && lmin <= 0 && lmax >=0, 1, 0)
243 .legibility <- function(lmin, lmax, lstep) argument
337 lstep <- step functionVar
342 l <- .legibility(lmin, lmax, lstep)
[all …]
/dports/x11-toolkits/xforms/xforms-1.2.4/fdesign/
H A Dsp_counter.c97 set_finput_value( cnt_attrib->step2, sp->lstep, sp->prec ); in counter_fill_in_spec_form()
150 if ( sp->lstep != defsp->lstep ) in counter_emit_spec_fd_code()
151 fprintf( fp, " lstep: %.*f\n", sp->prec, sp->lstep ); in counter_emit_spec_fd_code()
179 if ( sp->sstep != defsp->sstep || sp->lstep != defsp->lstep ) in counter_emit_spec_c_code()
181 sp->prec, sp->sstep, sp->prec, sp->lstep ); in counter_emit_spec_c_code()
/dports/math/scilab/scilab-6.1.1/scilab/modules/elementary_functions/src/fortran/linpack/
H A Dhhdml.f129 integer itrans,ipre,ndimq,iback,lstep,ia,ja,i,j,k,l
175 lstep = 1
181 lstep = -1
209 90 l = l + lstep
237 140 l = l + lstep
/dports/lang/python311/Python-3.11.0a3/Objects/
H A Drangeobject.c1086 long lstart, lstop, lstep; in range_iter() local
1103 lstep = PyLong_AsLong(r->step); in range_iter()
1104 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1114 if (lstep > 0) { in range_iter()
1115 if (lstop > LONG_MAX - (lstep - 1)) in range_iter()
1119 if (lstop < LONG_MIN + (-1 - lstep)) in range_iter()
1172 lstep = PyLong_AsLong(range->step); in range_reverse()
1173 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1178 if (lstep == LONG_MIN) in range_reverse()
1194 if (lstep > 0) { in range_reverse()
[all …]
/dports/lang/python310/Python-3.10.1/Objects/
H A Drangeobject.c1086 long lstart, lstop, lstep; in range_iter() local
1103 lstep = PyLong_AsLong(r->step); in range_iter()
1104 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1114 if (lstep > 0) { in range_iter()
1115 if (lstop > LONG_MAX - (lstep - 1)) in range_iter()
1119 if (lstop < LONG_MIN + (-1 - lstep)) in range_iter()
1172 lstep = PyLong_AsLong(range->step); in range_reverse()
1173 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1178 if (lstep == LONG_MIN) in range_reverse()
1194 if (lstep > 0) { in range_reverse()
[all …]
/dports/lang/python39/Python-3.9.9/Objects/
H A Drangeobject.c1065 long lstart, lstop, lstep; in range_iter() local
1082 lstep = PyLong_AsLong(r->step); in range_iter()
1083 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1093 if (lstep > 0) { in range_iter()
1094 if (lstop > LONG_MAX - (lstep - 1)) in range_iter()
1098 if (lstop < LONG_MIN + (-1 - lstep)) in range_iter()
1151 lstep = PyLong_AsLong(range->step); in range_reverse()
1152 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1157 if (lstep == LONG_MIN) in range_reverse()
1173 if (lstep > 0) { in range_reverse()
[all …]
/dports/math/octave-forge-gnuplot/gnuplot/inst/
H A D_g_default_tics.m12 lstep = 10 ^ floor (log10 (step)); variable
15 step = lstep * [1 2 2 5 5 5 5 10 10 10](round (step/lstep));
/dports/games/zangband/zangband/src/
H A Dwild1.c2543 lstep = hstep = size * 16; in create_hgt_map()
2553 lstep = hstep; in create_hgt_map()
2559 for (j = 0; j <= size; j += lstep) in create_hgt_map()
2590 for (i = 0; i <= size; i += lstep) in create_hgt_map()
2721 lstep = hstep = size * 16; in create_pop_map()
2731 lstep = hstep; in create_pop_map()
2737 for (j = 0; j <= size; j += lstep) in create_pop_map()
2769 for (i = 0; i <= size; i += lstep) in create_pop_map()
2906 lstep = hstep = size * 16; in create_law_map()
2916 lstep = hstep; in create_law_map()
[all …]
H A Dwild3.c388 u16b lstep, hstep, i, j, size; in frac_block() local
397 lstep = hstep = size; in frac_block()
406 lstep = hstep; in frac_block()
412 for (j = 0; j <= size; j += lstep) in frac_block()
420 (randint1(lstep * 256) - in frac_block()
429 for (i = 0; i <= size; i += lstep) in frac_block()
437 (randint1(lstep * 256) - in frac_block()
477 u16b lstep, hstep, i, j, size; in smooth_block() local
486 lstep = hstep = size; in smooth_block()
491 lstep = hstep; in smooth_block()
[all …]
/dports/math/maxima/maxima-5.43.2/share/colnew/lisp/
H A Dsubfor.lisp28 (prog ((t$ 0.0) (ip 0) (k 0) (kp1 0) (lstep 0) (i 0))
29 (declare (type (f2cl-lib:integer4) i lstep kp1 k ip)
32 (setf lstep (f2cl-lib:min0 (f2cl-lib:int-sub nrow 1) last$))
34 ((> k lstep) nil)
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Ddistransform.cpp284 l0 = lls[j-lstep*2-1]; in distanceTransformEx_5x5()
296 l0 = lls[j-lstep-2]; in distanceTransformEx_5x5()
302 l0 = lls[j-lstep-1]; in distanceTransformEx_5x5()
308 l0 = lls[j-lstep]; in distanceTransformEx_5x5()
314 l0 = lls[j-lstep+1]; in distanceTransformEx_5x5()
320 l0 = lls[j-lstep+2]; in distanceTransformEx_5x5()
364 l0 = lls[j+lstep+2]; in distanceTransformEx_5x5()
370 l0 = lls[j+lstep+1]; in distanceTransformEx_5x5()
376 l0 = lls[j+lstep]; in distanceTransformEx_5x5()
382 l0 = lls[j+lstep-1]; in distanceTransformEx_5x5()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Objects/
H A Drangeobject.c1042 long lstart, lstop, lstep; in range_iter() local
1059 lstep = PyLong_AsLong(r->step); in range_iter()
1060 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1064 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1118 lstep = PyLong_AsLong(range->step); in range_reverse()
1119 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1124 if (lstep == LONG_MIN) in range_reverse()
1140 if (lstep > 0) { in range_reverse()
1149 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
1153 new_stop = lstart - lstep; in range_reverse()
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Objects/
H A Drangeobject.c1042 long lstart, lstop, lstep; in range_iter() local
1059 lstep = PyLong_AsLong(r->step); in range_iter()
1060 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1064 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1118 lstep = PyLong_AsLong(range->step); in range_reverse()
1119 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1124 if (lstep == LONG_MIN) in range_reverse()
1140 if (lstep > 0) { in range_reverse()
1149 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
1153 new_stop = lstart - lstep; in range_reverse()
[all …]
/dports/lang/python-tools/Python-3.8.12/Objects/
H A Drangeobject.c1042 long lstart, lstop, lstep; in range_iter() local
1059 lstep = PyLong_AsLong(r->step); in range_iter()
1060 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1064 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1118 lstep = PyLong_AsLong(range->step); in range_reverse()
1119 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1124 if (lstep == LONG_MIN) in range_reverse()
1140 if (lstep > 0) { in range_reverse()
1149 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
1153 new_stop = lstart - lstep; in range_reverse()
[all …]
/dports/lang/python37/Python-3.7.12/Objects/
H A Drangeobject.c1038 long lstart, lstop, lstep; in range_iter() local
1055 lstep = PyLong_AsLong(r->step); in range_iter()
1056 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1060 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1114 lstep = PyLong_AsLong(range->step); in range_reverse()
1115 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1120 if (lstep == LONG_MIN) in range_reverse()
1136 if (lstep > 0) { in range_reverse()
1145 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
1149 new_stop = lstart - lstep; in range_reverse()
[all …]
/dports/lang/python38/Python-3.8.12/Objects/
H A Drangeobject.c1042 long lstart, lstop, lstep; in range_iter() local
1059 lstep = PyLong_AsLong(r->step); in range_iter()
1060 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1064 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1118 lstep = PyLong_AsLong(range->step); in range_reverse()
1119 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1124 if (lstep == LONG_MIN) in range_reverse()
1140 if (lstep > 0) { in range_reverse()
1149 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
1153 new_stop = lstart - lstep; in range_reverse()
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Objects/
H A Drangeobject.c1042 long lstart, lstop, lstep; in range_iter() local
1059 lstep = PyLong_AsLong(r->step); in range_iter()
1060 if (lstep == -1 && PyErr_Occurred()) { in range_iter()
1064 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1118 lstep = PyLong_AsLong(range->step); in range_reverse()
1119 if (lstep == -1 && PyErr_Occurred()) { in range_reverse()
1124 if (lstep == LONG_MIN) in range_reverse()
1140 if (lstep > 0) { in range_reverse()
1149 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
1153 new_stop = lstart - lstep; in range_reverse()
[all …]

12345678910>>...15