Home
last modified time | relevance | path

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

/linux/sound/soc/codecs/
H A Drl6231.c148 unsigned int f_in, f_out, f_max; in rl6231_pll_calc() local
176 f_in = freq_in / div; in rl6231_pll_calc()
183 in_t = f_in * (n_t + 2); in rl6231_pll_calc()
H A Dwm8974.c375 static unsigned int wm8974_get_mclkdiv(unsigned int f_in, unsigned int f_out, in wm8974_get_mclkdiv() argument
378 unsigned int ratio = 2 * f_in / f_out; in wm8974_get_mclkdiv()
H A Dwm8940.c647 static unsigned int wm8940_get_mclkdiv(unsigned int f_in, unsigned int f_out, in wm8940_get_mclkdiv() argument
650 unsigned int ratio = 2 * f_in / f_out; in wm8940_get_mclkdiv()
H A Drt5682s.c2291 static int find_pll_inter_combination(unsigned int f_in, unsigned int f_out, in find_pll_inter_combination() argument
2298 if (plla_table[i].freq_in == f_in && plla_table[i].freq_out == f_out) { in find_pll_inter_combination()
2306 if (pllb_table[i].freq_in == f_in && pllb_table[i].freq_out == f_out) { in find_pll_inter_combination()
2314 if (plla_table[i].freq_in == f_in && plla_table[i].freq_out == 3840000) { in find_pll_inter_combination()
/linux/drivers/clk/
H A Dclk-versaclock5.c501 u32 f_in = parent_rate / 2; in vc5_fod_recalc_rate() local
520 return div64_u64((u64)f_in << 24ULL, ((u64)div_int << 24ULL) + div_frc); in vc5_fod_recalc_rate()
528 u32 f_in = *parent_rate / 2; in vc5_fod_round_rate() local
533 div_int = f_in / rate; in vc5_fod_round_rate()
541 rate = f_in / div_int; in vc5_fod_round_rate()
545 div_frc = f_in % rate; in vc5_fod_round_rate()
552 return div64_u64((u64)f_in << 24ULL, ((u64)div_int << 24ULL) + div_frc); in vc5_fod_round_rate()
/linux/fs/
H A Dread_write.c1645 CLASS(fd, f_in)(fd_in); in SYSCALL_DEFINE6()
1646 if (fd_empty(f_in)) in SYSCALL_DEFINE6()
1657 pos_in = fd_file(f_in)->f_pos; in SYSCALL_DEFINE6()
1670 ret = vfs_copy_file_range(fd_file(f_in), pos_in, fd_file(f_out), pos_out, len, in SYSCALL_DEFINE6()
1680 fd_file(f_in)->f_pos = pos_in; in SYSCALL_DEFINE6()