Lines Matching defs:Start
683 DSTcorrect(Start, Future)
684 time_t Start;
690 StartDay = (localtime(&Start)->tm_hour + 1) % 24;
692 return (Future - Start) + (StartDay - FutureDay) * 60L * 60L;
697 RelativeDate(Start, DayOrdinal, DayNumber)
698 time_t Start;
705 now = Start;
709 return DSTcorrect(Start, now);
714 RelativeMonth(Start, RelMonth)
715 time_t Start;
725 tm = localtime(&Start);
734 return DSTcorrect(Start, ret);
928 time_t Start;
1006 * If an absolute time specified, set Start to the equivalent Unix
1007 * timestamp. Otherwise, set Start to now, and if we do not have
1008 * a relatime time (ie: only yyHaveZone), decrement Start to the
1017 Start = Convert(yyMonth, yyDay, yyYear, yyHour, yyMinutes, yySeconds,
1019 if (Start < 0)
1023 Start = now->time;
1025 Start -= ((tm->tm_hour * 60L + tm->tm_min) * 60L) + tm->tm_sec;
1041 Start += yyRelSeconds;
1042 delta = RelativeMonth(Start, yyRelMonth);
1045 Start += delta;
1056 tod = RelativeDate(Start, yyDayOrdinal, yyDayNumber);
1057 Start += tod;
1062 return Start == -1 ? 0 : Start;