Home
last modified time | relevance | path

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

/Linux-v5.4/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-v5.4/sound/soc/codecs/
Drl6231.c144 unsigned int f_in, f_out, f_max; in rl6231_pll_calc() local
171 f_in = freq_in / div; in rl6231_pll_calc()
176 in_t = f_in * (n_t + 2); in rl6231_pll_calc()
Dwm8974.c383 static unsigned int wm8974_get_mclkdiv(unsigned int f_in, unsigned int f_out, in wm8974_get_mclkdiv() argument
386 unsigned int ratio = 2 * f_in / f_out; in wm8974_get_mclkdiv()
/Linux-v5.4/drivers/clk/
Dclk-versaclock5.c474 u32 f_in = parent_rate / 2; in vc5_fod_recalc_rate() local
493 return div64_u64((u64)f_in << 24ULL, ((u64)div_int << 24ULL) + div_frc); in vc5_fod_recalc_rate()
501 u32 f_in = *parent_rate / 2; in vc5_fod_round_rate() local
506 div_int = f_in / rate; in vc5_fod_round_rate()
514 rate = f_in / div_int; in vc5_fod_round_rate()
518 div_frc = f_in % rate; in vc5_fod_round_rate()
525 return div64_u64((u64)f_in << 24ULL, ((u64)div_int << 24ULL) + div_frc); in vc5_fod_round_rate()
/Linux-v5.4/fs/
Dread_write.c1696 struct fd f_in; in SYSCALL_DEFINE6() local
1700 f_in = fdget(fd_in); in SYSCALL_DEFINE6()
1701 if (!f_in.file) in SYSCALL_DEFINE6()
1713 pos_in = f_in.file->f_pos; in SYSCALL_DEFINE6()
1723 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len, in SYSCALL_DEFINE6()
1733 f_in.file->f_pos = pos_in; in SYSCALL_DEFINE6()
1747 fdput(f_in); in SYSCALL_DEFINE6()