Home | History | Annotate | Download | only in hw

Lines Matching refs:next_time

130     uint64_t d, next_time, base;
139 next_time = s->count;
146 next_time = base + s->count;
148 next_time = base + s->count + 1;
154 next_time = base + period2;
156 next_time = base + s->count;
161 next_time = s->count;
163 next_time = s->count + 1;
169 next_time = s->count_load_time + muldiv64(next_time, get_ticks_per_sec(), PIT_FREQ);
172 if (next_time <= current_time)
173 next_time = current_time + 1;
174 return next_time;