bin/date/vary.c
129
adjyear(struct tm *t, char type, int64_t val, int mk)
bin/date/vary.c
146
return !mk || domktime(t, type) != -1;
bin/date/vary.c
150
adjmon(struct tm *t, char type, int64_t val, int istext, int mk)
bin/date/vary.c
206
return !mk || domktime(t, type) != -1;
bin/date/vary.c
210
adjday(struct tm *t, char type, int64_t val, int mk)
bin/date/vary.c
250
return !mk || domktime(t, type) != -1;
bin/date/vary.c
254
adjwday(struct tm *t, char type, int64_t val, int istext, int mk)
bin/date/vary.c
268
return !val || adjday(t, '+', val, mk);
bin/date/vary.c
277
return !val || adjday(t, '-', val, mk);
bin/date/vary.c
280
return adjday(t, '-', t->tm_wday - val, mk);
bin/date/vary.c
284
return adjday(t, '+', val - t->tm_wday, mk);
bin/date/vary.c
290
adjhour(struct tm *t, char type, int64_t val, int mk)
bin/date/vary.c
331
return !mk || domktime(t, type) != -1;
bin/date/vary.c
335
adjmin(struct tm *t, char type, int64_t val, int mk)
bin/date/vary.c
372
return !mk || domktime(t, type) != -1;
bin/date/vary.c
376
adjsec(struct tm *t, char type, int64_t val, int mk)
bin/date/vary.c
413
return !mk || domktime(t, type) != -1;