Home
last modified time | relevance | path

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

/linux-6.6.21/drivers/media/tuners/
Dmt2063.c85 u32 f_in; member
492 pAS_Info->f_in) / pAS_Info->f_ref) - pAS_Info->f_in; in MT2063_ResetExclZones()
523 …MT2063_AddExclZone(pAS_Info, 1920836000 - pAS_Info->f_in, 1922236000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
524 …MT2063_AddExclZone(pAS_Info, 1922564000 - pAS_Info->f_in, 1923964000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
525 …MT2063_AddExclZone(pAS_Info, 1924292000 - pAS_Info->f_in, 1925692000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
526 …MT2063_AddExclZone(pAS_Info, 1926020000 - pAS_Info->f_in, 1927420000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
527 …MT2063_AddExclZone(pAS_Info, 1927748000 - pAS_Info->f_in, 1929148000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
531 …MT2063_AddExclZone(pAS_Info, 1896644000 - pAS_Info->f_in, 1898044000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
532 …MT2063_AddExclZone(pAS_Info, 1894916000 - pAS_Info->f_in, 1896316000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
533 …MT2063_AddExclZone(pAS_Info, 1893188000 - pAS_Info->f_in, 1894588000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
[all …]
/linux-6.6.21/sound/soc/codecs/
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()
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()
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()
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-6.6.21/drivers/clk/
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-6.6.21/fs/
Dread_write.c1564 struct fd f_in; in SYSCALL_DEFINE6() local
1568 f_in = fdget(fd_in); in SYSCALL_DEFINE6()
1569 if (!f_in.file) in SYSCALL_DEFINE6()
1581 pos_in = f_in.file->f_pos; in SYSCALL_DEFINE6()
1595 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len, in SYSCALL_DEFINE6()
1605 f_in.file->f_pos = pos_in; in SYSCALL_DEFINE6()
1619 fdput(f_in); in SYSCALL_DEFINE6()