Searched defs:next_ge (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cron/
H A Dcron.c319 static int next_ge(int, char *);
1588 tm_mon = next_ge(tm->tm_mon + 1, e->of.ct.month) - 1; /* 0-11 */
1589 tm_mday = next_ge(tm->tm_mday, e->of.ct.daymon); /* 1-31 */
1590 tm_wday = next_ge(tm->tm_wday, e->of.ct.dayweek); /* 0-6 */
1599 if ((tm->tm_hour + 1) <= next_ge(tm->tm_hour, e->of.ct.hour)) {
1602 min = next_ge(m%60, e->of.ct.minute);
1605 hr = next_ge(h%24, e->of.ct.hour);
1700 min = next_ge(0, e->of.ct.minute);
1701 hr = next_ge(0, e->of.ct.hour);
1710 day1 = next_ge((d
1994 next_ge(int current, char *list) function
[all...]

Completed in 68 milliseconds