/openbmc/linux/drivers/media/tuners/ |
H A D | mt2063.c | 85 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 …]
|
/openbmc/linux/sound/soc/codecs/ |
H A D | rl6231.c | 148 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 D | wm8974.c | 375 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 D | wm8940.c | 647 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 D | rt5682s.c | 2291 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()
|
/openbmc/qemu/tests/functional/ |
H A D | test_arm_orangepi.py | 206 with open(uboot_path, 'rb') as f_in: 209 shutil.copyfileobj(f_in, f_out)
|
/openbmc/qemu/scripts/ |
H A D | block-coroutine-wrapper.py | 321 with open(fname, encoding='utf-8') as f_in: 322 f_out.write(gen_wrappers(f_in.read()))
|
/openbmc/linux/drivers/clk/ |
H A D | clk-versaclock5.c | 501 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()
|
/openbmc/qemu/hw/timer/ |
H A D | imx_epit.c | 81 uint32_t f_in = imx_ccm_get_clock_frequency(s->ccm, imx_epit_clocks[clksrc]); in imx_epit_get_freq() local 82 uint32_t freq = f_in / prescaler; in imx_epit_get_freq()
|
/openbmc/linux/fs/ |
H A D | read_write.c | 1564 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()
|
/openbmc/qemu/tests/avocado/ |
H A D | replay_kernel.py | 527 with lzma.open(kernel_path_xz, 'rb') as f_in: 529 shutil.copyfileobj(f_in, f_out)
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | iotests.py | 140 with bz2.open(sample_fname) as f_in, open(fname, 'wb') as f_out: 141 shutil.copyfileobj(f_in, f_out)
|
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/ |
H A D | 0004-mmal_20.patch | 3003 +static bool to_zc_validate_fmt(const video_format_t * const f_in, const video_format_t * const f_o… 3005 + if (!((f_in->i_chroma == VLC_CODEC_I420 || f_in->i_chroma == VLC_CODEC_I420_10L) && 3010 + if (f_in->i_height != f_out->i_height || 3011 + f_in->i_width != f_out->i_width)
|
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/ |
H A D | 0001-ffmpeg-5.1.4-rpi_24.patch | 23153 + with open(args.csv_in, 'r', newline='') as f_in: 23154 + stats_in = {x["name"]:tstats(x) for x in csv.DictReader(f_in)} 23352 + with open(args.stream0, 'r', newline='') as f_in: 23353 + stats0 = {x["name"]:tstats(x) for x in csv.DictReader(f_in)} 23354 + with open(args.stream1, 'r', newline='') as f_in: 23355 + stats1 = {x["name"]:tstats(x) for x in csv.DictReader(f_in)}
|