Searched refs:rate64 (Results 1 – 9 of 9) sorted by relevance
/Linux-v5.4/drivers/clk/rockchip/ |
D | clk-pll.c | 157 u64 rate64 = prate; in rockchip_rk3036_pll_recalc_rate() local 161 rate64 *= cur.fbdiv; in rockchip_rk3036_pll_recalc_rate() 162 do_div(rate64, cur.refdiv); in rockchip_rk3036_pll_recalc_rate() 169 rate64 += frac_rate64 >> 24; in rockchip_rk3036_pll_recalc_rate() 172 do_div(rate64, cur.postdiv1); in rockchip_rk3036_pll_recalc_rate() 173 do_div(rate64, cur.postdiv2); in rockchip_rk3036_pll_recalc_rate() 175 return (unsigned long)rate64; in rockchip_rk3036_pll_recalc_rate() 392 u64 rate64 = prate; in rockchip_rk3066_pll_recalc_rate() local 404 rate64 *= cur.nf; in rockchip_rk3066_pll_recalc_rate() 405 do_div(rate64, cur.nr); in rockchip_rk3066_pll_recalc_rate() [all …]
|
/Linux-v5.4/drivers/clk/microchip/ |
D | clk-core.c | 295 u64 rate64; in roclk_calc_rate() local 304 rate64 = parent_rate; in roclk_calc_rate() 305 rate64 <<= 8; in roclk_calc_rate() 306 do_div(rate64, rodiv); in roclk_calc_rate() 308 rate64 = parent_rate / (rodiv << 1); in roclk_calc_rate() 310 rate64 = parent_rate; in roclk_calc_rate() 312 return rate64; in roclk_calc_rate() 604 u64 rate64; in spll_calc_mult_div() local 610 rate64 = parent_rate; in spll_calc_mult_div() 611 rate64 *= mul; in spll_calc_mult_div() [all …]
|
/Linux-v5.4/net/ipv4/ |
D | tcp_nv.c | 246 u64 rate64; in tcpnv_acked() local 288 rate64 = ((u64)sample->in_flight) * 80000; in tcpnv_acked() 289 do_div(rate64, avg_rtt ?: 1); in tcpnv_acked() 290 rate = (u32)rate64; in tcpnv_acked()
|
D | tcp.c | 394 u64 rate64 = 0; in tcp_compute_delivery_rate() local 397 rate64 = (u64)rate * tp->mss_cache * USEC_PER_SEC; in tcp_compute_delivery_rate() 398 do_div(rate64, intv); in tcp_compute_delivery_rate() 400 return rate64; in tcp_compute_delivery_rate() 3201 u64 rate64; in tcp_get_info() local 3212 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info() 3213 info->tcpi_pacing_rate = rate64; in tcp_get_info() 3216 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info() 3217 info->tcpi_max_pacing_rate = rate64; in tcp_get_info() 3297 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_info() [all …]
|
/Linux-v5.4/net/sched/ |
D | act_police.c | 63 u64 rate64, prate64; in tcf_police_init() local 161 rate64 = tb[TCA_POLICE_RATE64] ? in tcf_police_init() 163 psched_ratecfg_precompute(&new->rate, &R_tab->rate, rate64); in tcf_police_init()
|
D | sch_tbf.c | 304 u64 rate64 = 0, prate64 = 0; in tbf_change() local 330 rate64 = nla_get_u64(tb[TCA_TBF_RATE64]); in tbf_change() 331 psched_ratecfg_precompute(&rate, &qopt->rate, rate64); in tbf_change()
|
D | sch_htb.c | 1307 u64 rate64, ceil64; in htb_change_class() local 1450 rate64 = tb[TCA_HTB_RATE64] ? nla_get_u64(tb[TCA_HTB_RATE64]) : 0; in htb_change_class() 1454 psched_ratecfg_precompute(&cl->rate, &hopt->rate, rate64); in htb_change_class()
|
D | sch_generic.c | 1319 u64 rate64) in psched_ratecfg_precompute() argument 1323 r->rate_bytes_ps = max_t(u64, conf->rate, rate64); in psched_ratecfg_precompute()
|
/Linux-v5.4/include/net/ |
D | sch_generic.h | 1244 u64 rate64);
|