Lines Matching refs:year
85 uint64_t secs, i, year, days; in clock_ymdhms_to_secs() local
87 year = dt->dt_year; in clock_ymdhms_to_secs()
93 if (year < POSIX_BASE_YEAR) in clock_ymdhms_to_secs()
96 if (is_leap_year(year) && dt->dt_mon > FEBRUARY) in clock_ymdhms_to_secs()
99 if (year < 2001) { in clock_ymdhms_to_secs()
101 for (i = POSIX_BASE_YEAR; i < year; i++) in clock_ymdhms_to_secs()
106 year -= 2001; in clock_ymdhms_to_secs()
108 i = year / 400; in clock_ymdhms_to_secs()
110 year -= i * 400; in clock_ymdhms_to_secs()
112 i = year / 100; in clock_ymdhms_to_secs()
114 year -= i * 100; in clock_ymdhms_to_secs()
116 i = year / 4; in clock_ymdhms_to_secs()
118 year -= i * 4; in clock_ymdhms_to_secs()
120 for (i = dt->dt_year-year; i < dt->dt_year; i++) in clock_ymdhms_to_secs()