Home | History | Annotate | Download | only in src

Lines Matching full:year

182    year to the year day YDAY with week day WDAY.  ISO weeks start on
183 Monday; the first ISO week has the year's first Thursday. YDAY may
198 # define __is_leap(year)\
199 ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
393 int year = t->tm_year + __TM_YEAR_BASE;
396 /* This ISO week belongs to the previous year. */
397 year--;
398 days = __iso_week_days (t->tm_yday + (365 + __is_leap (year)), t->tm_wday);
401 int d = __iso_week_days (t->tm_yday - (365 + __is_leap (year)), t->tm_wday);
403 /* This ISO week belongs to the next year. */
404 ++year;
411 val = (long)(year % 100 + 100) % 100;
414 val = (long)year;