Lines Matching defs:count
65 int count;
78 * before latching the timer count to guarantee that although
79 * the jiffies value might be older than the count (that is,
82 * count), it cannot be newer.
85 /* read the count */
86 count = __raw_readl(timer_reg_base + PWM_CNT);
89 * It's possible for count to appear to go the wrong way for this
98 if (count < old_count && jifs == old_jifs)
99 count = old_count;
101 old_count = count;
106 return (u64) (jifs * ls1x_jiffies_per_tick) + count;