Searched refs:new_mult (Results 1 – 5 of 5) sorted by relevance
/linux/arch/arm/lib/ |
H A D | delay.c | 67 u32 new_mult, new_shift; in register_current_timer_delay() local 70 clocks_calc_mult_shift(&new_mult, &new_shift, timer->freq, in register_current_timer_delay() 72 res = cyc_to_ns(1ULL, new_mult, new_shift); in register_current_timer_delay()
|
/linux/drivers/iio/common/inv_sensors/ |
H A D | inv_sensors_timestamp.c | 66 if (fifo && ts->new_mult != 0) in inv_sensors_timestamp_update_odr() 71 ts->new_mult = mult; in inv_sensors_timestamp_update_odr() 178 if (ts->new_mult == 0) in inv_sensors_timestamp_apply_odr() 182 ts->mult = ts->new_mult; in inv_sensors_timestamp_apply_odr() 183 ts->new_mult = 0; in inv_sensors_timestamp_apply_odr()
|
/linux/kernel/time/ |
H A D | sched_clock.c | 181 u32 new_mult, new_shift; in sched_clock_register() local 193 clocks_calc_mult_shift(&new_mult, &new_shift, rate, NSEC_PER_SEC, 3600); in sched_clock_register() 199 wrap = clocks_calc_max_nsecs(new_mult, new_shift, 0, new_mask, NULL); in sched_clock_register() 212 rd.mult = new_mult; in sched_clock_register() 237 res = cyc_to_ns(1ULL, new_mult, new_shift); in sched_clock_register()
|
/linux/drivers/media/i2c/ |
H A D | ar0521.c | 251 u32 new_mult = div64_round_up((u64)freq * new_pre, in calc_pll() local 254 if (new_mult < 32) in calc_pll() 256 if (new_mult > 254) in calc_pll() 258 if (sensor->extclk_freq * (u64)new_mult < (u64)AR0521_PLL_MIN * in calc_pll() 261 if (sensor->extclk_freq * (u64)new_mult > (u64)AR0521_PLL_MAX * in calc_pll() 264 new_pll = div64_round_up(sensor->extclk_freq * (u64)new_mult, in calc_pll() 269 mult = new_mult; in calc_pll()
|
/linux/include/linux/iio/common/ |
H A D | inv_sensors_timestamp.h | 51 * @new_mult: new set internal period multiplier (not yet effective) 62 uint32_t new_mult; member
|