Searched defs:histo (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c277 dump_histogram(const uint64_t *histo, int size, int offset) argument
285 if (histo[i] > max)
286 max = histo[i];
287 if (histo[i] > 0 && i > maxidx)
289 if (histo[i] > 0 && i < minidx)
298 i + offset, (u_longlong_t)histo[i],
299 &histo_stars[(max - histo[i]) * histo_width / max]);
/illumos-gate/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c517 uint64_t histo[HISTOSZ]; local
527 histo[i] = 0;
558 histo[len]++;
569 if (histo[i] > 0)
573 mdb_printf("%u %llu\n", i, histo[i]);
1097 dump_histogram(const uint64_t *histo, int size, int offset) argument
1105 if (histo[i] > max)
1106 max = histo[i];
1107 if (histo[i] > 0 && i > maxidx)
1109 if (histo[
[all...]

Completed in 69 milliseconds