Lines Matching defs:now
435 static struct rtc_time now;
447 stm32_rtc_read_time(dev, &now);
453 next_month = now.tm_mon + 1;
456 next_year = now.tm_year + 1;
458 next_year = now.tm_year;
462 max_day_forward = rtc_month_days(now.tm_mon, now.tm_year)
463 - now.tm_mday
464 + min(rtc_month_days(next_month, next_year), now.tm_mday);
467 max_alarm_time64 = rtc_tm_to_time64(&now) + max_day_forward * SEC_PER_DAY;