Searched refs:mday (Results 1 - 25 of 28) sorted by relevance

12

/openbsd-current/gnu/usr.bin/perl/dist/Devel-PPPort/devel/
H A Dupdate_release_date.pl16 my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) =
21 my $human_ts = sprintf( "%04d-%02d-%02d", $year, $mon, $mday );
/openbsd-current/gnu/usr.bin/perl/lib/Time/
H A Dlocaltime.t8 @methods = qw(sec min hour mday mon year wday yday isdst);
H A Dgmtime.t8 @methods = qw(sec min hour mday mon year wday yday isdst);
H A Dtm.pm8 map { $_ => '$' } qw{ sec min hour mday mon year wday yday isdst }
27 min, hour, mday, mon, year, wday, yday, and isdst.
H A Dgmtime.pm71 mday, mon, year, wday, yday, and isdst.
77 C<$tm_obj-E<gt>mday()> corresponds to $tm_mday if you import the fields.
H A Dlocaltime.pm66 mday, mon, year, wday, yday, and isdst.
72 Thus, C<$tm_obj-E<gt>mday()> corresponds to $tm_mday if you import
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Local/t/
H A DLocal.t103 my ( $year, $mon, $mday, $hour, $min, $sec ) = @{$vals};
113 ->( $sec, $min, $hour, $mday, $mon, $y );
129 day => $mday,
133 "$sub( $sec, $min, $hour, $mday, $mon, $y )"
141 ->( $sec, $min, $hour, $mday, $mon, $y );
157 day => $mday,
161 "$sub( $sec, $min, $hour, $mday, $mon, $y )"
443 my ( $year, $mon, $mday, $hour, $min, $sec )
450 ->( $sec, $min, $hour, $mday, $mon, $year );
/openbsd-current/usr.bin/at/
H A Dparsetime.c458 assign_date(struct tm *tm, int mday, int mon, int year) argument
480 (tm->tm_mon > mon ||(tm->tm_mon == mon && tm->tm_mday > mday)))
483 tm->tm_mday = mday;
504 int mday, wday, mon; local
526 * do month mday [year]
531 mday = atoi(sc_token);
536 assign_date(tm, mday, mon, year);
545 mday = tm->tm_mday;
549 mday += 7 - (tm->tm_wday - wday);
551 mday
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dtime.t35 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($beg);
40 ok $mday, ' month day';
59 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($beg);
61 ($sec,$min,$hour2,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($beg);
66 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($beg);
70 ok $mday, ' month day';
/openbsd-current/gnu/usr.bin/cvs/contrib/
H A Dlog.in108 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime;
135 $logfh->print ("Date:\t$days[$wday] $mos[$mon] $mday, $year @ $hour:" . sprintf("%02d", $min) . "\n");
140 $mailfh->print ("Date:\t$days[$wday] $mos[$mon] $mday, $year @ $hour:" . sprintf("%02d", $min) . "\n");
H A Dlog_accum.in175 local($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
181 $year%100, $mon+1, $mday,
211 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst, $zone, $gmtoff) =
225 $DoW[$wday], $mday, $MoY[$mon], $year,
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Local/lib/Time/
H A DLocal.pm113 my ( $sec, $min, $hour, $mday, $month, $year ) = @_;
136 Carp::croak("Day '$mday' out of range 1..$md")
137 if $mday > $md or $mday < 1;
146 my $days = _daygm( undef, undef, undef, $mday, $month, $year );
154 .= "Cannot handle date ($sec, $min, $hour, $mday, $month, $year)";
263 my $time = timelocal_posix( $sec, $min, $hour, $mday, $mon, $year );
264 my $time = timegm_posix( $sec, $min, $hour, $mday, $mon, $year );
297 C<$hour>, C<$mday>, and C<$mon> values and will croak (using C<Carp::croak()>)
323 C<$hour>, C<$mday>, an
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Piece/
H A DPiece.xs16 /* offset to bias by March (month 4) 1st between month/mday & year finding */
161 int month, mday, year, jday;
166 mday = ptm->tm_mday;
167 /* allow given yday with no month & mday to dominate the result */
168 if (ptm->tm_yday >= 0 && mday <= 0 && month <= 0) {
170 mday = 0;
182 yearday += month*MONTH_TO_DAYS + mday + jday;
1059 _mini_mktime(int sec, int min, int hour, int mday, int mon, int year)
1070 mytm.tm_mday = mday;
H A DPiece.pm194 sub mday { subroutine
199 *day_of_month = \&mday;
394 my $jd = $time->_jd( $time->year, $time->mon, $time->mday,
740 $time->mday, $final_month, $time->year - 1900 + $num_years);
921 $t->mday # also available as $t->day_of_month
/openbsd-current/gnu/usr.bin/perl/
H A Dlocale.c4430 int mday = 1;
4444 case ABDAY_7: mday++;
4445 case ABDAY_6: mday++;
4446 case ABDAY_5: mday++;
4447 case ABDAY_4: mday++;
4448 case ABDAY_3: mday++;
4449 case ABDAY_2: mday++;
4453 case DAY_7: mday++;
4454 case DAY_6: mday++;
4455 case DAY_5: mday
4803 Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst) argument
4956 Perl_my_strftime8_temp(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst, utf8ness_t * utf8ness) argument
[all...]
H A Dutil.c3847 int month, mday, year, jday; local
3861 /* offset to bias by March (month 4) 1st between month/mday & year finding */
3930 mday = ptm->tm_mday;
3937 yearday += month*MONTH_TO_DAYS + mday + jday;
/openbsd-current/sys/dev/pci/
H A Dmbg.c60 u_int8_t mday; member in struct:mbg_time
327 ymdhms.dt_day = tframe.mday;
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dlog.c1492 int year, mon, mday, hour, min, sec; local
1511 (void) sscanf (ver->date, SDATEFORM, &year, &mon, &mday, &hour, &min,
1515 sprintf (buf, "%04d/%02d/%02d %02d:%02d:%02d", year, mon, mday,
H A Drcs.c3392 int year, mon, mday, hour, min, sec;
3395 (void) sscanf (rcs_date, SDATEFORM, &year, &mon, &mday, &hour, &min,
3399 sprintf (buf, "%04d/%02d/%02d %02d:%02d:%02d", year, mon, mday,
3408 int year, mon, mday, hour, min, sec;
3411 (void) sscanf (rcs_date, SDATEFORM, &year, &mon, &mday, &hour, &min,
3418 sprintf (buf, "%s %d %04d", months[mon - 1], mday, year);
3390 int year, mon, mday, hour, min, sec; local
3406 int year, mon, mday, hour, min, sec; local
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/
H A DPOSIX.xs3496 asctime(sec, min, hour, mday, mon, year, wday = 0, yday = 0, isdst = -1)
3500 int mday
3516 mytm.tm_mday = mday;
3571 strftime(fmt, sec, min, hour, mday, mon, year, wday = -1, yday = -1, isdst = -1)
3576 int mday
3592 buf = my_strftime8_temp(SvPV_nolen(fmt), sec, min, hour, mday, mon, year, wday, yday, isdst, &is_utf8);
/openbsd-current/sys/dev/usb/
H A Dumbg.c71 u_int8_t mday; member in struct:mbg_time
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DFTP.pm1299 my($sec,$min,$hour,$mday,$mon,$year) = localtime($mtime);
1318 $mday,
/openbsd-current/usr.sbin/adduser/
H A Dadduser.perl1102 local($sec, $min, $hour, $mday, $mon, $year) = localtime;
1106 foreach $e ('sec', 'min', 'hour', 'mday', 'mon') {
1111 &append_file($logfile, "$year/$mon/$mday $hour:$min:$sec $string");
/openbsd-current/gnu/usr.bin/perl/cpan/IO-Compress/bin/
H A Dzipdetails2234 my $mday = ( ( $dt >> 16 ) & 0x1f );
2246 my $time_t = mktime( $sec, $min, $hour, $mday, $mon, $year, 0, 0, -1 );
/openbsd-current/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/
H A DUnzip.pm809 my $mday = ( ( $dt >> 16 ) & 0x1f );
816 my $time_t = Time::Local::timelocal( $sec, $min, $hour, $mday, $mon, $year);

Completed in 347 milliseconds

12