Lines Matching defs:next
73 * Calculate the next alarm time given the requested alarm time mask
76 static void rtc_next_alarm_time(struct rtc_time *next, struct rtc_time *now,
82 next->tm_year = now->tm_year;
83 next->tm_mon = now->tm_mon;
84 next->tm_mday = now->tm_mday;
85 next->tm_hour = alrm->tm_hour;
86 next->tm_min = alrm->tm_min;
87 next->tm_sec = alrm->tm_sec;
90 next_time = rtc_tm_to_time64(next);
95 rtc_time64_to_tm(next_time, next);