HomeSort by: relevance | last modified time | path
    Searched refs:nsteps (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/jemalloc/dist/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...]
  /src/external/bsd/jemalloc.old/dist/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...]
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_aggregate.c 231 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); local
236 assert(nsteps >= factor);
237 assert(nsteps % factor == 0);
245 step = next > nsteps ? next / nsteps : 1;
255 step = next > nsteps ? next / nsteps : 1;
dt_consume.c 997 uint16_t factor, low, high, nsteps; local
1014 nsteps = DTRACE_LLQUANTIZE_NSTEP(arg);
1021 nsteps == 0 || factor > nsteps)
1060 step = next > nsteps ? next / nsteps : 1;
1090 step = next > nsteps ? next / nsteps : 1;
  /src/external/cddl/osnet/dist/uts/common/dtrace/
dtrace.c 2516 uint16_t high, uint16_t nsteps, int64_t value)
2521 ASSERT(factor <= nsteps);
2522 ASSERT(nsteps % factor == 0);
2535 int nbuckets = this > nsteps ? nsteps : this;
2577 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); local
2580 low, high, nsteps, nval)] += incr;
11579 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(desc->dtad_arg);
11585 if (factor < 2 || low >= high || nsteps < factor)
11593 for (v = factor; v < nsteps; v *= factor
    [all...]

Completed in 42 milliseconds