Searched refs:bw (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/bsd/net/pktsched/
H A Dpktsched_fairq.c814 u_int64_t bw; local
852 bw = b->bw_bytes * machclk_freq / b->bw_delta;
853 if (bw < cl->cl_hogs_m1)
988 u_int64_t bw; local
1010 bw = cl->cl_bw_bytes * machclk_freq / cl->cl_bw_delta;
1012 if (bw > cl->cl_bandwidth)
1014 cl->cl_bw_current = bw;
1017 bw, cl->cl_bandwidth, *hit_limit, b);
1031 u_int64_t bw; local
1064 bw
[all...]
/darwin-on-arm/xnu/bsd/net/
H A Dkpi_interface.c1015 ifnet_set_output_bandwidths(struct ifnet *ifp, struct if_bandwidths *bw, argument
1028 if (bw != NULL) {
1029 if (bw->eff_bw != 0)
1030 ifp->if_output_bw.eff_bw = bw->eff_bw;
1031 if (bw->max_bw != 0)
1032 ifp->if_output_bw.max_bw = bw->max_bw;
1056 ifnet_set_input_bandwidths(struct ifnet *ifp, struct if_bandwidths *bw) argument
1061 if (bw->eff_bw != 0)
1062 ifp->if_input_bw.eff_bw = bw->eff_bw;
1063 if (bw
1797 uint64_t bw = 0; local
[all...]
H A Dif_var.h380 u_int64_t bw; /* measured bandwidth in bytes per ms */ member in struct:if_measured_bw
/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_input.c264 * kick in. Currently it will start when the bw*delay measured in
271 * space left in the buffer is less than one forth of the bw*delay
484 * bw measurement was started
490 uint32_t bw, bytes, elapsed_time; local
497 bw = bytes / elapsed_time;
498 if ( bw > 0) {
501 (((tp->t_bwmeas->bw_sndbw << 3) - tp->t_bwmeas->bw_sndbw) + bw) >> 3;
503 tp->t_bwmeas->bw_sndbw = bw;

Completed in 81 milliseconds