Lines Matching refs:next
504 struct timespec64 next; in sched_sync_hw_clock() local
506 ktime_get_real_ts64(&next); in sched_sync_hw_clock()
508 next.tv_sec = 659; in sched_sync_hw_clock()
516 next.tv_sec = 0; in sched_sync_hw_clock()
520 next.tv_nsec = target_nsec - next.tv_nsec; in sched_sync_hw_clock()
521 if (next.tv_nsec <= 0) in sched_sync_hw_clock()
522 next.tv_nsec += NSEC_PER_SEC; in sched_sync_hw_clock()
523 if (next.tv_nsec >= NSEC_PER_SEC) { in sched_sync_hw_clock()
524 next.tv_sec++; in sched_sync_hw_clock()
525 next.tv_nsec -= NSEC_PER_SEC; in sched_sync_hw_clock()
529 timespec64_to_jiffies(&next)); in sched_sync_hw_clock()