Searched defs:first_bin (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/plockstat/
H A Dplockstat.c604 int first_bin, last_bin; local
613 for (first_bin = DTRACE_QUANTIZE_ZEROBUCKET;
614 a[first_bin] == 0; first_bin++)
629 bin_size = a[first_bin];
633 (first_bin - DTRACE_QUANTIZE_ZEROBUCKET),
644 if (first_bin++ == last_bin)
/illumos-gate/usr/src/cmd/lockstat/
H A Dlockstat.c1627 int first_bin, last_bin, max_bin_count, total_bin_count; local
1755 first_bin = 0;
1756 while (lsp->ls_hist[first_bin] == 0)
1757 first_bin++;
1765 for (j = first_bin; j <= last_bin; j++) {
1778 for (j = first_bin; j <= last_bin; j++) {
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_consume.c759 int i, first_bin = 0, last_bin = DTRACE_QUANTIZE_NBUCKETS - 1; local
766 while (first_bin < DTRACE_QUANTIZE_NBUCKETS - 1 && data[first_bin] == 0)
767 first_bin++;
769 if (first_bin == DTRACE_QUANTIZE_NBUCKETS - 1) {
775 first_bin = DTRACE_QUANTIZE_ZEROBUCKET - 1;
778 if (first_bin > 0)
779 first_bin--;
788 for (i = first_bin; i <= last_bin; i++) {
797 for (i = first_bin;
857 int i, first_bin, last_bin, base; local
987 int i, first_bin, last_bin, bin = 1, order, levels; local
[all...]

Completed in 52 milliseconds