Home
last modified time | relevance | path

Searched refs:histo (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c510 uint64_t histo[HISTOSZ]; in dbuf_stats() local
520 histo[i] = 0; in dbuf_stats()
551 histo[len]++; in dbuf_stats()
562 if (histo[i] > 0) in dbuf_stats()
566 mdb_printf("%u %llu\n", i, histo[i]); in dbuf_stats()
1219 dump_histogram(const uint64_t *histo, int size, int offset) in dump_histogram() argument
1227 if (histo[i] > max) in dump_histogram()
1228 max = histo[i]; in dump_histogram()
1229 if (histo[i] > 0 && i > maxidx) in dump_histogram()
1231 if (histo[i] > 0 && i < minidx) in dump_histogram()
[all …]
/titanic_41/usr/src/cmd/zdb/
H A Dzdb.c258 dump_histogram(const uint64_t *histo, int size, int offset) in dump_histogram() argument
266 if (histo[i] > max) in dump_histogram()
267 max = histo[i]; in dump_histogram()
268 if (histo[i] > 0 && i > maxidx) in dump_histogram()
270 if (histo[i] > 0 && i < minidx) in dump_histogram()
279 i + offset, (u_longlong_t)histo[i], in dump_histogram()
280 &histo_stars[(max - histo[i]) * histo_width / max]); in dump_histogram()