Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DLogLinearDistribution.java125 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_44/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java274 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_44/usr/src/lib/libdtrace/common/
H A Ddt_aggregate.c226 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 Ddt_consume.c988 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_44/usr/src/tools/cpcgen/
H A Dcpcgen.c730 uint_t family, model, nsteps; in cpcgen_read_intel() local
754 cpcgen_parse_model(fstr, &family, &model, &nsteps, steppings); in cpcgen_read_intel()
805 proc->cproc_nsteps = nsteps; in cpcgen_read_intel()
806 if (nsteps > 0) { in cpcgen_read_intel()
/titanic_44/usr/src/uts/common/dtrace/
H A Ddtrace.c2135 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 …]