Searched refs:nsteps (Results 1 – 6 of 6) sorted by relevance
| /src/lib/libc/stdlib/ |
| H A D | tsearch_path.h | 45 unsigned int nsteps; member 53 p->nsteps = 0; in path_init() 63 p->steps[p->nsteps / STEPS_BIT] |= in path_taking_left() 64 (uintptr_t)1 << (p->nsteps % STEPS_BIT); in path_taking_left() 65 ++p->nsteps; in path_taking_left() 73 p->steps[p->nsteps / STEPS_BIT] &= in path_taking_right() 74 ~((uintptr_t)1 << (p->nsteps % STEPS_BIT)); in path_taking_right() 75 ++p->nsteps; in path_taking_right()
|
| /src/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | smoothstep.sh | 20 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 … 90 while [ $s -le $nsteps ] ; do 92 x=`echo ${xprec} k ${s} ${nsteps} / p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
|
| /src/contrib/processor-trace/libipt/internal/include/ |
| H A D | pt_insn.h | 210 size_t nsteps);
|
| /src/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_consume.c | 74 #define llquantize_nsteps u.llquantize.nsteps 83 uint16_t nsteps; member 1165 uint16_t factor, low, high, nsteps; in dt_format_llquantize_prepare() local 1181 nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dt_format_llquantize_prepare() 1188 nsteps == 0 || factor > nsteps) { in dt_format_llquantize_prepare() 1219 step = next > nsteps ? next / nsteps : 1; in dt_format_llquantize_prepare() 1226 args->llquantize_nsteps = nsteps; in dt_format_llquantize_prepare() 1241 uint16_t factor, low, high, nsteps; in dt_format_llquantize() local 1258 nsteps = args.llquantize_nsteps; in dt_format_llquantize() 1292 step = next > nsteps ? next / nsteps : 1; in dt_format_llquantize() [all …]
|
| H A D | dt_aggregate.c | 232 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dt_aggregate_llquantizedsum() local 237 assert(nsteps >= factor); in dt_aggregate_llquantizedsum() 238 assert(nsteps % factor == 0); in dt_aggregate_llquantizedsum() 246 step = next > nsteps ? next / nsteps : 1; in dt_aggregate_llquantizedsum() 256 step = next > nsteps ? next / nsteps : 1; in dt_aggregate_llquantizedsum()
|
| /src/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| H A D | dtrace.c | 2445 uint16_t high, uint16_t nsteps, int64_t value) in dtrace_aggregate_llquantize_bucket() argument 2450 ASSERT(factor <= nsteps); in dtrace_aggregate_llquantize_bucket() 2451 ASSERT(nsteps % factor == 0); in dtrace_aggregate_llquantize_bucket() 2464 int nbuckets = this > nsteps ? nsteps : this; in dtrace_aggregate_llquantize_bucket() 2506 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dtrace_aggregate_llquantize() local 2509 low, high, nsteps, nval)] += incr; in dtrace_aggregate_llquantize() 11378 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(desc->dtad_arg); local 11384 if (factor < 2 || low >= high || nsteps < factor) 11392 for (v = factor; v < nsteps; v *= factor) 11395 if ((v % nsteps) || (nsteps % factor)) [all …]
|