Lines Matching defs:tm
45 int64_t update_from_seconds(int64_t total_seconds, struct tm *tm) {
133 tm->tm_year = static_cast<int>(years + 2000 - time_constants::TIME_YEAR_BASE);
134 tm->tm_mon = static_cast<int>(months + 2);
135 tm->tm_mday = static_cast<int>(remainingDays + 1);
136 tm->tm_wday = static_cast<int>(wday);
137 tm->tm_yday = static_cast<int>(yday);
139 tm->tm_hour =
141 tm->tm_min =
144 tm->tm_sec =
147 tm->tm_isdst = 0;