Home
last modified time | relevance | path

Searched refs:nsteps (Results 1 – 4 of 4) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
Dsmoothstep.sh20 nsteps=$2
40 …y=`echo ${yprec} k ${step} ${nsteps} / sx _2 lx 3 ^ '*' 3 lx 2 ^ '*' + p | dc | tr -d '\\\\\n' | s…
46 …y=`echo ${yprec} k ${step} ${nsteps} / sx 6 lx 5 ^ '*' _15 lx 4 ^ '*' + 10 lx 3 ^ '*' + p | dc | t…
52 …y=`echo ${yprec} k ${step} ${nsteps} / sx _20 lx 7 ^ '*' 70 lx 6 ^ '*' + _84 lx 5 ^ '*' + 35 lx 4 …
88 while [ $s -le $nsteps ] ; do
90 x=`echo ${xprec} k ${s} ${nsteps} / p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
/external/eigen/blas/f2c/
Dsrotm.c31 integer nsteps; in srotm_() local
104 nsteps = *n * *incx; in srotm_()
115 i__1 = nsteps; in srotm_()
128 i__2 = nsteps; in srotm_()
143 i__1 = nsteps; in srotm_()
Ddrotm.c31 integer nsteps; in drotm_() local
103 nsteps = *n * *incx; in drotm_()
114 i__1 = nsteps; in drotm_()
127 i__2 = nsteps; in drotm_()
142 i__1 = nsteps; in drotm_()
/external/opencv3/modules/stitching/src/
Dseam_finders.cpp832 int nsteps; in estimateSeam() local
843 nsteps = 0; in estimateSeam()
848 steps[nsteps++] = std::make_pair(cost(y, x-1) + costH(y, x-1), 1); in estimateSeam()
850 … steps[nsteps++] = std::make_pair(cost(y-1, x-1) + costH(y-1, x-1) + costV(y-1, x), 2); in estimateSeam()
852 … steps[nsteps++] = std::make_pair(cost(y+1, x-1) + costH(y+1, x-1) + costV(y, x), 3); in estimateSeam()
855 if (nsteps) in estimateSeam()
857 std::pair<float, int> opt = *min_element(steps, steps + nsteps); in estimateSeam()
873 nsteps = 0; in estimateSeam()
878 steps[nsteps++] = std::make_pair(cost(y-1, x) + costV(y-1, x), 1); in estimateSeam()
880 … steps[nsteps++] = std::make_pair(cost(y-1, x-1) + costV(y-1, x-1) + costH(y, x-1), 2); in estimateSeam()
[all …]