Home
last modified time | relevance | path

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

/NextBSD/lib/libc/stdlib/
HDtsearch_path.h47 unsigned int nsteps; member
55 p->nsteps = 0; in path_init()
65 p->steps[p->nsteps / STEPS_BIT] |= in path_taking_left()
66 (uintptr_t)1 << (p->nsteps % STEPS_BIT); in path_taking_left()
67 ++p->nsteps; in path_taking_left()
75 p->steps[p->nsteps / STEPS_BIT] &= in path_taking_right()
76 ~((uintptr_t)1 << (p->nsteps % STEPS_BIT)); in path_taking_right()
77 ++p->nsteps; in path_taking_right()
/NextBSD/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_aggregate.c231 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dt_aggregate_llquantizedsum() local
236 assert(nsteps >= factor); in dt_aggregate_llquantizedsum()
237 assert(nsteps % factor == 0); in dt_aggregate_llquantizedsum()
245 step = next > nsteps ? next / nsteps : 1; in dt_aggregate_llquantizedsum()
255 step = next > nsteps ? next / nsteps : 1; in dt_aggregate_llquantizedsum()
HDdt_consume.c996 uint16_t factor, low, high, nsteps; in dt_print_llquantize() local
1013 nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dt_print_llquantize()
1020 nsteps == 0 || factor > nsteps) in dt_print_llquantize()
1059 step = next > nsteps ? next / nsteps : 1; in dt_print_llquantize()
1089 step = next > nsteps ? next / nsteps : 1; in dt_print_llquantize()
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/dtrace/
HDdtrace.c2268 uint16_t high, uint16_t nsteps, int64_t value) in dtrace_aggregate_llquantize_bucket() argument
2273 ASSERT(factor <= nsteps); in dtrace_aggregate_llquantize_bucket()
2274 ASSERT(nsteps % factor == 0); in dtrace_aggregate_llquantize_bucket()
2287 int nbuckets = this > nsteps ? nsteps : this; in dtrace_aggregate_llquantize_bucket()
2329 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dtrace_aggregate_llquantize() local
2332 low, high, nsteps, nval)] += incr; in dtrace_aggregate_llquantize()
11089 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(desc->dtad_arg); local
11095 if (factor < 2 || low >= high || nsteps < factor)
11103 for (v = factor; v < nsteps; v *= factor)
11106 if ((v % nsteps) || (nsteps % factor))
[all …]