Home
last modified time | relevance | path

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

/xnu-8792.61.2/bsd/net/
H A Dnet_perf.c66 bzero(&npp->np_hist_bars, sizeof(npp->np_hist_bars)); in update_bins()
70 npp->np_hist_bars[j] = i; in update_bins()
88 if (num_pkts <= npp->np_hist_bars[0]) { in net_perf_histogram()
90 } else if (npp->np_hist_bars[0] < num_pkts && num_pkts <= npp->np_hist_bars[1]) { in net_perf_histogram()
92 } else if (npp->np_hist_bars[1] < num_pkts && num_pkts <= npp->np_hist_bars[2]) { in net_perf_histogram()
94 } else if (npp->np_hist_bars[2] < num_pkts && num_pkts <= npp->np_hist_bars[3]) { in net_perf_histogram()
96 } else if (npp->np_hist_bars[3] < num_pkts) { in net_perf_histogram()
H A Dnet_perf.h49 uint8_t np_hist_bars[NET_PERF_BARS]; member