Home
last modified time | relevance | path

Searched refs:rate64 (Results 1 – 6 of 6) sorted by relevance

/linux-4.1.27/drivers/clk/rockchip/
Dclk-pll.c134 u64 nf, nr, no, rate64 = prate; in rockchip_rk3066_pll_recalc_rate() local
151 rate64 *= (nf + 1); in rockchip_rk3066_pll_recalc_rate()
152 do_div(rate64, nr + 1); in rockchip_rk3066_pll_recalc_rate()
153 do_div(rate64, no + 1); in rockchip_rk3066_pll_recalc_rate()
155 return (unsigned long)rate64; in rockchip_rk3066_pll_recalc_rate()
/linux-4.1.27/net/sched/
Dsch_tbf.c323 u64 rate64 = 0, prate64 = 0; in tbf_change() local
346 rate64 = nla_get_u64(tb[TCA_TBF_RATE64]); in tbf_change()
347 psched_ratecfg_precompute(&rate, &qopt->rate, rate64); in tbf_change()
Dsch_generic.c960 u64 rate64) in psched_ratecfg_precompute() argument
964 r->rate_bytes_ps = max_t(u64, conf->rate, rate64); in psched_ratecfg_precompute()
Dsch_htb.c1345 u64 rate64, ceil64; in htb_change_class() local
1481 rate64 = tb[TCA_HTB_RATE64] ? nla_get_u64(tb[TCA_HTB_RATE64]) : 0; in htb_change_class()
1485 psched_ratecfg_precompute(&cl->rate, &hopt->rate, rate64); in htb_change_class()
/linux-4.1.27/net/ipv4/
Dtcp.c2607 u64 rate64; in tcp_get_info() local
2670 rate64 = rate != ~0U ? rate : ~0ULL; in tcp_get_info()
2671 put_unaligned(rate64, &info->tcpi_pacing_rate); in tcp_get_info()
2674 rate64 = rate != ~0U ? rate : ~0ULL; in tcp_get_info()
2675 put_unaligned(rate64, &info->tcpi_max_pacing_rate); in tcp_get_info()
/linux-4.1.27/include/net/
Dsch_generic.h789 u64 rate64);