Home
last modified time | relevance | path

Searched refs:day_of_year (Results 1 – 5 of 5) sorted by relevance

/openbsd/lib/libcrypto/asn1/
H A Da_time_posix.c108 int64_t era, year_of_era, day_of_year, day_of_era, posix_days; in posix_time_from_utc() local
119 day_of_year = (153 * (month > 2 ? month - 3 : month + 9) + 2) / in posix_time_from_utc()
122 100 + day_of_year; in posix_time_from_utc()
140 day_of_year, month_of_year; in utc_from_posix_time() local
160 day_of_year = day_of_era - (365 * year_of_era + year_of_era / 4 - in utc_from_posix_time()
162 month_of_year = (5 * day_of_year + 2) / 153; in utc_from_posix_time()
168 *out_day = day_of_year - (153 * month_of_year + 2) / 5 + 1; in utc_from_posix_time()
/openbsd/gnu/usr.bin/perl/cpan/Time-Piece/t/
H A D02core_dst.t41 cmp_ok($t->day_of_year, '==', 189);
H A D02core.t29 cmp_ok($t->day_of_year, '==', 59);
/openbsd/gnu/usr.bin/perl/cpan/Time-Piece/
H A DPiece.pm300 *day_of_year = \&yday;
/openbsd/gnu/usr.bin/perl/cpan/perlfaq/lib/
H A Dperlfaq4.pod453 my $day_of_year = (localtime)[7];
459 my $day_of_year = strftime "%j", localtime;
473 my $day_of_year = localtime->yday;
479 my $day_of_year = Day_of_Year( 1987, 12, 18 );