Home
last modified time | relevance | path

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

/linux-4.19.296/drivers/media/tuners/
Dmt2063.c94 u32 f_in; member
501 pAS_Info->f_in) / pAS_Info->f_ref) - pAS_Info->f_in; in MT2063_ResetExclZones()
532 …MT2063_AddExclZone(pAS_Info, 1920836000 - pAS_Info->f_in, 1922236000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
533 …MT2063_AddExclZone(pAS_Info, 1922564000 - pAS_Info->f_in, 1923964000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
534 …MT2063_AddExclZone(pAS_Info, 1924292000 - pAS_Info->f_in, 1925692000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
535 …MT2063_AddExclZone(pAS_Info, 1926020000 - pAS_Info->f_in, 1927420000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
536 …MT2063_AddExclZone(pAS_Info, 1927748000 - pAS_Info->f_in, 1929148000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
540 …MT2063_AddExclZone(pAS_Info, 1896644000 - pAS_Info->f_in, 1898044000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
541 …MT2063_AddExclZone(pAS_Info, 1894916000 - pAS_Info->f_in, 1896316000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
542 …MT2063_AddExclZone(pAS_Info, 1893188000 - pAS_Info->f_in, 1894588000 - pAS_Info->f_in); /* Ctr = 1… in MT2063_ResetExclZones()
[all …]
/linux-4.19.296/drivers/clk/
Dclk-versaclock5.c483 u32 f_in = parent_rate / 2; in vc5_fod_recalc_rate() local
502 return div64_u64((u64)f_in << 24ULL, ((u64)div_int << 24ULL) + div_frc); in vc5_fod_recalc_rate()
510 u32 f_in = *parent_rate / 2; in vc5_fod_round_rate() local
515 div_int = f_in / rate; in vc5_fod_round_rate()
523 rate = f_in / div_int; in vc5_fod_round_rate()
527 div_frc = f_in % rate; in vc5_fod_round_rate()
534 return div64_u64((u64)f_in << 24ULL, ((u64)div_int << 24ULL) + div_frc); in vc5_fod_round_rate()
/linux-4.19.296/fs/
Dread_write.c1640 struct fd f_in; in SYSCALL_DEFINE6() local
1644 f_in = fdget(fd_in); in SYSCALL_DEFINE6()
1645 if (!f_in.file) in SYSCALL_DEFINE6()
1657 pos_in = f_in.file->f_pos; in SYSCALL_DEFINE6()
1667 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len, in SYSCALL_DEFINE6()
1677 f_in.file->f_pos = pos_in; in SYSCALL_DEFINE6()
1691 fdput(f_in); in SYSCALL_DEFINE6()