Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/cmd/plockstat/
H A Dplockstat.c592 for (count = sum = 0, i = DTRACE_QUANTIZE_ZEROBUCKET, j = 0; in process_aggregate()
626 for (first_bin = DTRACE_QUANTIZE_ZEROBUCKET; in process_aggregate()
629 for (last_bin = DTRACE_QUANTIZE_ZEROBUCKET + 63; in process_aggregate()
646 (first_bin - DTRACE_QUANTIZE_ZEROBUCKET), in process_aggregate()
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddtrace.h511 #define DTRACE_QUANTIZE_ZEROBUCKET ((sizeof (uint64_t) * NBBY) - 1) macro
514 (int64_t)((buck) < DTRACE_QUANTIZE_ZEROBUCKET ? \
515 -(1LL << (DTRACE_QUANTIZE_ZEROBUCKET - 1 - (buck))) : \
516 (buck) == DTRACE_QUANTIZE_ZEROBUCKET ? 0 : \
517 1LL << ((buck) - DTRACE_QUANTIZE_ZEROBUCKET - 1))
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c593 if (min != 0 && min != DTRACE_QUANTIZE_ZEROBUCKET) in dt_print_quanthdr_packed()
824 first_bin = DTRACE_QUANTIZE_ZEROBUCKET - 1; in dt_format_quantize_prepare()
825 last_bin = DTRACE_QUANTIZE_ZEROBUCKET + 1; in dt_format_quantize_prepare()
923 if (min != 0 && min != DTRACE_QUANTIZE_ZEROBUCKET) in dt_print_quantize_packed()
H A Ddt_aggregate.c1496 minbin = maxbin = DTRACE_QUANTIZE_ZEROBUCKET;
/freebsd/cddl/contrib/opensolaris/cmd/lockstat/
H A Dlockstat.c1031 for (i = DTRACE_QUANTIZE_ZEROBUCKET, j = 0; in process_aggregate()
/freebsd/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c2358 int i, zero = DTRACE_QUANTIZE_ZEROBUCKET; in dtrace_aggregate_quantize()