Lines Matching +full:start +full:- +full:year
4 ;# $time = timelocal($sec,$min,$hours,$mday,$mon,$year,$junk,$junk,$isdst);
5 ;# $time = timegm($sec,$min,$hours,$mday,$mon,$year);
8 ;# with localtime() and gmtime(). We manage this by caching the start times
9 ;# of any months we've seen before. If we know the start time of the month,
10 ;# we can always calculate any time within the month. The start times
30 $tzmin = 24 * 60 - $tzmin; # minutes west of GMT
31 $tzmin -= 24 * 60 if $epoch[5] == 70; # account for the date line
46 $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS;
54 $cheat + $_[0] * $SEC + $_[1] * $MIN + $_[2] * $HR + ($_[3]-1) * $DAYS
55 + $tzmin * $MIN - 60 * 60 * ($_[8] != 0);
61 $year = $_[5];
65 $year += $YearFix if $year < $epoch[5];
66 while ($diff = $year - $g[5]) {
70 while ($diff = $month - $g[4]) {
74 $g[3]--;
75 $guess -= $g[0] * $SEC + $g[1] * $MIN + $g[2] * $HR + $g[3] * $DAYS;