Searched defs:last_bin (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/cmd/plockstat/ |
H A D | plockstat.c | 604 int first_bin, last_bin; local 616 for (last_bin = DTRACE_QUANTIZE_ZEROBUCKET + 63; 617 a[last_bin] == 0; last_bin--) 644 if (first_bin++ == last_bin)
|
/illumos-gate/usr/src/cmd/lockstat/ |
H A D | lockstat.c | 1627 int first_bin, last_bin, max_bin_count, total_bin_count; local 1759 last_bin = 63; 1760 while (lsp->ls_hist[last_bin] == 0) 1761 last_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 D | dt_consume.c | 759 int i, first_bin = 0, last_bin = DTRACE_QUANTIZE_NBUCKETS - 1; local 776 last_bin = DTRACE_QUANTIZE_ZEROBUCKET + 1; 781 while (last_bin > 0 && data[last_bin] == 0) 782 last_bin--; 784 if (last_bin < DTRACE_QUANTIZE_NBUCKETS - 1) 785 last_bin++; 788 for (i = first_bin; i <= last_bin; i++) { 797 for (i = first_bin; i <= last_bin; i++) { 857 int i, first_bin, last_bin, bas local 987 int i, first_bin, last_bin, bin = 1, order, levels; local [all...] |
Completed in 71 milliseconds