OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nsteps
(Results
1 - 4
of
4
) sorted by null
/external/jemalloc/include/jemalloc/internal/
smoothstep.sh
5
# entries correspond to x in [1/
nsteps
, 2/
nsteps
, ...,
nsteps
/
nsteps
]. Encode
8
# Usage: smoothstep.sh <variant> <
nsteps
> <bfp> <xprec> <yprec>
11
# <
nsteps
> must be greater than zero.
20
nsteps
=$2
40
y=`echo ${yprec} k ${step} ${
nsteps
} / sx _2 lx 3 ^ '*' 3 lx 2 ^ '*' + p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
46
y=`echo ${yprec} k ${step} ${
nsteps
} / sx 6 lx 5 ^ '*' _15 lx 4 ^ '*' + 10 lx 3 ^ '*' + p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
52
y=`echo ${yprec} k ${step} ${
nsteps
} / sx _20 lx 7 ^ '*' 70 lx 6 ^ '*' + _84 lx 5 ^ '*' + 35 lx 4 ^ '*' + p | dc | tr -d '\\\\\n' | se (…)
[
all
...]
/external/eigen/blas/f2c/
drotm.c
31
integer
nsteps
;
local
103
nsteps
= *n * *incx;
114
i__1 =
nsteps
;
127
i__2 =
nsteps
;
142
i__1 =
nsteps
;
srotm.c
31
integer
nsteps
;
local
104
nsteps
= *n * *incx;
115
i__1 =
nsteps
;
128
i__2 =
nsteps
;
143
i__1 =
nsteps
;
/external/opencv3/modules/stitching/src/
seam_finders.cpp
832
int
nsteps
;
843
nsteps
= 0;
848
steps[
nsteps
++] = std::make_pair(cost(y, x-1) + costH(y, x-1), 1);
850
steps[
nsteps
++] = std::make_pair(cost(y-1, x-1) + costH(y-1, x-1) + costV(y-1, x), 2);
852
steps[
nsteps
++] = std::make_pair(cost(y+1, x-1) + costH(y+1, x-1) + costV(y, x), 3);
855
if (
nsteps
)
857
std::pair<float, int> opt = *min_element(steps, steps +
nsteps
);
873
nsteps
= 0;
878
steps[
nsteps
++] = std::make_pair(cost(y-1, x) + costV(y-1, x), 1);
880
steps[
nsteps
++] = std::make_pair(cost(y-1, x-1) + costV(y-1, x-1) + costH(y, x-1), 2)
[
all
...]
Completed in 128 milliseconds