Searched refs:histo (Results 1 – 7 of 7) sorted by relevance
| /freebsd/tools/diag/dumpvfscache/ |
| H A D | dumpvfscache.c | 61 int histo[2047]; variable 121 histo[nb]++; in main() 128 p1 += histo[i] * i; in main() 130 if (histo[i] || histn[i]) in main() 131 printf("H%02d %4d %4d / %4d %4d\n",i,histo[i], p1 , histn[i], p2); in main()
|
| /freebsd/sys/netinet/ |
| H A D | tcp_hostcache.c | 198 SYSCTL_PROC(_net_inet_tcp_hostcache, OID_AUTO, histo, 718 int *histo; in sysctl_tcp_hc_histo() local 724 histo = (int *)malloc(sizeof(int) * (V_tcp_hostcache.bucket_limit + 1), in sysctl_tcp_hc_histo() 726 if (histo == NULL) in sysctl_tcp_hc_histo() 734 histo[hch_length]++; in sysctl_tcp_hc_histo() 742 sbuf_printf(&sb, "%u\t%u\n", i, histo[i]); in sysctl_tcp_hc_histo() 746 free(histo, M_TEMP); in sysctl_tcp_hc_histo()
|
| /freebsd/sys/kern/ |
| H A D | subr_blist.c | 397 daddr_t histo[nitems(fib)]; /* # gaps in each size range */ member 460 stats->histo[lo]++; in update_gap_stats() 486 if (stats->histo[i] != 0) { in dump_gap_stats() 488 (intmax_t)stats->histo[i]); in dump_gap_stats() 496 sbuf_printf(s, "%20jd | ", (intmax_t)stats->histo[i]); in dump_gap_stats() 497 if (stats->histo[i] > 1) in dump_gap_stats()
|
| /freebsd/sys/contrib/openzfs/include/sys/ |
| H A D | ddt_impl.h | 235 #define ddt_dump_age_histogram(histo, cutoff) ((void)0) argument
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | vdev_raidz.c | 3028 uint64_t *histo = in vdev_child_slow_outlier() local 3033 memcpy(prev_histo, histo, size); in vdev_child_slow_outlier() 3040 uint64_t this_count = histo[i] - prev_histo[i]; in vdev_child_slow_outlier() 3045 memcpy(prev_histo, histo, size); in vdev_child_slow_outlier()
|
| /freebsd/sys/contrib/openzfs/cmd/zdb/ |
| H A D | zdb.c | 995 dump_histogram(const uint64_t *histo, int size, int offset) in dump_histogram() argument 1003 if (histo[i] == 0) in dump_histogram() 1005 if (histo[i] > max) in dump_histogram() 1006 max = histo[i]; in dump_histogram() 1018 i + offset, (u_longlong_t)histo[i], in dump_histogram() 1019 &histo_stars[(max - histo[i]) * histo_width / max]); in dump_histogram()
|
| /freebsd/sys/contrib/openzfs/cmd/zpool/ |
| H A D | zpool_main.c | 5396 single_histo_average(uint64_t *histo, unsigned int buckets) in single_histo_average() argument 5412 if (histo[i] != 0) { in single_histo_average() 5413 total += histo[i] * (((1UL << i) + ((1UL << i)/2))); in single_histo_average() 5414 count += histo[i]; in single_histo_average()
|