Searched refs:nsteps (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | LogLinearDistribution.java | 125 long low, high, nsteps, factor; in fillRangeCache() local 130 nsteps = unpack(constant, NSTEP_SHIFT); in fillRangeCache() 146 step = (next > nsteps) ? (next / nsteps) : 1; in fillRangeCache() 157 step = (next > nsteps) ? (next / nsteps) : 1; in fillRangeCache()
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestBean.java | 274 long nsteps = 2; in getLogLinearDistribution() local 288 step = (next > nsteps) ? (next / nsteps) : 1; in getLogLinearDistribution() 298 step = (next > nsteps) ? (next / nsteps) : 1; in getLogLinearDistribution() 306 nsteps, 0, buckets); in getLogLinearDistribution()
|
/titanic_41/usr/src/lib/libdtrace/common/ |
H A D | dt_aggregate.c | 226 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dt_aggregate_llquantizedsum() local 231 assert(nsteps >= factor); in dt_aggregate_llquantizedsum() 232 assert(nsteps % factor == 0); in dt_aggregate_llquantizedsum() 240 step = next > nsteps ? next / nsteps : 1; in dt_aggregate_llquantizedsum() 250 step = next > nsteps ? next / nsteps : 1; in dt_aggregate_llquantizedsum()
|
H A D | dt_consume.c | 988 uint16_t factor, low, high, nsteps; in dt_print_llquantize() local 1005 nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dt_print_llquantize() 1012 nsteps == 0 || factor > nsteps) in dt_print_llquantize() 1051 step = next > nsteps ? next / nsteps : 1; in dt_print_llquantize() 1081 step = next > nsteps ? next / nsteps : 1; in dt_print_llquantize()
|
/titanic_41/usr/src/uts/common/dtrace/ |
H A D | dtrace.c | 2135 uint16_t high, uint16_t nsteps, int64_t value) in dtrace_aggregate_llquantize_bucket() argument 2140 ASSERT(factor <= nsteps); in dtrace_aggregate_llquantize_bucket() 2141 ASSERT(nsteps % factor == 0); in dtrace_aggregate_llquantize_bucket() 2154 int nbuckets = this > nsteps ? nsteps : this; in dtrace_aggregate_llquantize_bucket() 2196 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(arg); in dtrace_aggregate_llquantize() local 2199 low, high, nsteps, nval)] += incr; in dtrace_aggregate_llquantize() 10456 uint16_t nsteps = DTRACE_LLQUANTIZE_NSTEP(desc->dtad_arg); in dtrace_ecb_aggregation_create() local 10462 if (factor < 2 || low >= high || nsteps < factor) in dtrace_ecb_aggregation_create() 10470 for (v = factor; v < nsteps; v *= factor) in dtrace_ecb_aggregation_create() 10473 if ((v % nsteps) || (nsteps % factor)) in dtrace_ecb_aggregation_create() [all …]
|