Lines Matching refs:m

47 static void inc_month(timelib_sll *y, timelib_sll *m)  in inc_month()  argument
49 (*m)++; in inc_month()
50 if (*m > 12) { in inc_month()
51 *m -= 12; in inc_month()
56 static void dec_month(timelib_sll *y, timelib_sll *m) in dec_month() argument
58 (*m)--; in dec_month()
59 if (*m < 1) { in dec_month()
60 *m += 12; in dec_month()
65 …tive(timelib_sll *base_y, timelib_sll *base_m, timelib_sll *y, timelib_sll *m, timelib_sll *d, tim… in do_range_limit_days_relative() argument
88 (*m)--; in do_range_limit_days_relative()
98 (*m)--; in do_range_limit_days_relative()
107 static int do_range_limit_days(timelib_sll *y, timelib_sll *m, timelib_sll *d) in do_range_limit_days() argument
120 do_range_limit(1, 13, 12, m, y); in do_range_limit_days()
123 days_this_month = leapyear ? days_in_month_leap[*m] : days_in_month[*m]; in do_range_limit_days()
124 last_month = (*m) - 1; in do_range_limit_days()
137 (*m)--; in do_range_limit_days()
142 (*m)++; in do_range_limit_days()
152 current_dow = timelib_day_of_week(time->y, time->m, time->d); in do_adjust_for_weekday()
187 do_range_limit(0, 12, 12, &rt->m, &rt->y); in timelib_do_rel_normalize()
189 do_range_limit_days_relative(&base->y, &base->m, &rt->y, &rt->m, &rt->d, rt->invert); in timelib_do_rel_normalize()
190 do_range_limit(0, 12, 12, &rt->m, &rt->y); in timelib_do_rel_normalize()
198 do_range_limit(1, 13, 12, &time->m, &time->y); in timelib_do_normalize()
200 do {} while (do_range_limit_days(&time->y, &time->m, &time->d)); in timelib_do_normalize()
201 do_range_limit(1, 13, 12, &time->m, &time->y); in timelib_do_normalize()
217 time->m += time->relative.m; in do_adjust_relative()
227 time->m++; in do_adjust_relative()
239 dow = timelib_day_of_week(time->y, time->m, time->d); in do_adjust_special_weekday()
303 time->m += time->relative.m; in do_adjust_special_early()
304 time->relative.m = 0; in do_adjust_special_early()
308 time->m += time->relative.m + 1; in do_adjust_special_early()
309 time->relative.m = 0; in do_adjust_special_early()
319 time->m++; in do_adjust_special_early()
457 res += do_months(time->m, time->y); in timelib_update_ts()
477 time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst);
480 …time.relative.y, time.relative.m, time.relative.d, time.relative.h, time.relative.i, time.relative…