Searched defs:nsteps (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libdtrace/common/ |
H A D | dt_aggregate.c | 226 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); local 231 assert(nsteps >= factor); 232 assert(nsteps % factor == 0); 240 step = next > nsteps ? next / nsteps : 1; 250 step = next > nsteps ? next / nsteps : 1;
|
H A D | dt_consume.c | 988 uint16_t factor, low, high, nsteps; local 1005 nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); 1012 nsteps == 0 || factor > nsteps) 1051 step = next > nsteps ? next / nsteps : 1; 1081 step = next > nsteps ? next / nsteps : 1;
|
/illumos-gate/usr/src/uts/common/dtrace/ |
H A D | dtrace.c | 2287 uint16_t high, uint16_t nsteps, int64_t value) 2292 ASSERT(factor <= nsteps); 2293 ASSERT(nsteps % factor == 0); 2306 int nbuckets = this > nsteps ? nsteps : this; 2348 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); local 2351 low, high, nsteps, nval)] += incr; 10733 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(desc->dtad_arg); local 10739 if (factor < 2 || low >= high || nsteps < factor) 10747 for (v = factor; v < nsteps; 2286 dtrace_aggregate_llquantize_bucket(uint16_t factor, uint16_t low, uint16_t high, uint16_t nsteps, int64_t value) argument [all...] |
Completed in 110 milliseconds