Searched refs:shift_constant (Results 1 - 1 of 1) sorted by relevance

/linux-master/include/linux/
H A Dclocksource.h147 static inline u32 clocksource_freq2mult(u32 freq, u32 shift_constant, u64 from) argument
156 u64 tmp = ((u64)from) << shift_constant;
167 * @shift_constant: Clocksource shift factor
172 static inline u32 clocksource_khz2mult(u32 khz, u32 shift_constant) argument
174 return clocksource_freq2mult(khz, shift_constant, NSEC_PER_MSEC);
180 * @shift_constant: Clocksource shift factor
186 static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant) argument
188 return clocksource_freq2mult(hz, shift_constant, NSEC_PER_SEC);

Completed in 89 milliseconds