Lines Matching refs:y

30 static timelib_sll positive_mod(timelib_sll x, timelib_sll y)  in positive_mod()  argument
34 tmp = x % y; in positive_mod()
36 tmp += y; in positive_mod()
47 static timelib_sll timelib_day_of_week_ex(timelib_sll y, timelib_sll m, timelib_sll d, int iso) in timelib_day_of_week_ex() argument
54 c1 = century_value(y / 100); in timelib_day_of_week_ex()
55 y1 = positive_mod(y, 100); in timelib_day_of_week_ex()
56 m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m]; in timelib_day_of_week_ex()
66 timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_week() argument
68 return timelib_day_of_week_ex(y, m, d, 0); in timelib_day_of_week()
71 timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_iso_day_of_week() argument
73 return timelib_day_of_week_ex(y, m, d, 1); in timelib_iso_day_of_week()
82 timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_year() argument
84 return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1; in timelib_day_of_year()
87 timelib_sll timelib_days_in_month(timelib_sll y, timelib_sll m) in timelib_days_in_month() argument
89 return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m]; in timelib_days_in_month()
92 void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timeli… in timelib_isoweek_from_date() argument
96 y_leap = timelib_is_leap(y); in timelib_isoweek_from_date()
97 prev_y_leap = timelib_is_leap(y-1); in timelib_isoweek_from_date()
98 doy = timelib_day_of_year(y, m, d) + 1; in timelib_isoweek_from_date()
102 jan1weekday = timelib_day_of_week(y, 1, 1); in timelib_isoweek_from_date()
103 weekday = timelib_day_of_week(y, m, d); in timelib_isoweek_from_date()
108 *iy = y - 1; in timelib_isoweek_from_date()
115 *iy = y; in timelib_isoweek_from_date()
118 if (*iy == y) { in timelib_isoweek_from_date()
123 *iy = y + 1; in timelib_isoweek_from_date()
129 if (*iy == y) { in timelib_isoweek_from_date()
140 timelib_sll timelib_daynr_from_weeknr(timelib_sll y, timelib_sll w, timelib_sll d) in timelib_daynr_from_weeknr() argument
145 dow = timelib_day_of_week(y, 1, 1); in timelib_daynr_from_weeknr()
161 int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_valid_date() argument
163 if (m < 1 || m > 12 || d < 1 || d > timelib_days_in_month(y, m)) { in timelib_valid_date()