Searched refs:gmtime (Results 1 - 25 of 90) sorted by relevance

1234

/openbsd-current/gnu/usr.bin/perl/lib/Time/
H A Dgmtime.t10 use_ok Time::gmtime;
14 my $gmtime = gmtime $time; # This is the OO gmtime.
15 my @gmtime = CORE::gmtime $time; # This is the gmtime function
17 is @gmtime, 9, "gmtime($time)";
19 is $gmtime
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dtime_loop.t15 is gmtime(2**69), undef;
H A Dtime.t66 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($beg);
69 isnt($sec, $xsec, 'gmtime() list conext');
75 'gmtime() and localtime() agree what day of year');
79 ok(gmtime() =~ /^(Sun|Mon|Tue|Wed|Thu|Fri|Sat)[ ]
83 'gmtime(), scalar context'
88 # Test gmtime over a range of times.
94 # time_t gmtime list scalar
111 ok eq_array([gmtime($time)], \@expected), "gmtime($time) list context";
112 is scalar gmtime(
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_ctime.h60 #undef gmtime macro
76 using ::gmtime;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_ctime.h60 #undef gmtime macro
76 using ::gmtime;
/openbsd-current/gnu/usr.sbin/mkhybrid/src/
H A Dvms.h13 /* gmtime not available under VMS - make it look like we are in Greenwich */
14 #define gmtime localtime macro
/openbsd-current/gnu/usr.bin/perl/cpan/podlators/t/man/
H A Ddevise-date.t33 strftime('%Y-%m-%d', gmtime()),
63 strftime('%Y-%m-%d', gmtime()),
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dtime.h42 #undef gmtime macro
56 using std::gmtime;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dtime.h42 #undef gmtime macro
56 using std::gmtime;
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Piece/t/
H A D06subclass.t17 for my $method (qw(new localtime gmtime)) {
39 my $g = $class->gmtime;
47 #via clone with gmtime
49 isa_ok($g_clone, $class, 'custom gmtime via clone');
54 # let's verify that we can use gmtime from T::P without the export magic
55 my $piece = Time::Piece::gmtime;
56 isa_ok($piece, "Time::Piece", "object created via full-qualified gmtime");
/openbsd-current/usr.sbin/tcpdump/
H A Dgmt2local.c41 * Use gmtime() and localtime() to keep things simple.
53 *gmt = *gmtime(&t);
/openbsd-current/lib/libc/hidden/
H A Dtime.h37 PROTO_NORMAL(gmtime); variable
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dtimecheck2.c93 /* gmtime() broke or tm_year overflowed or time_t overflowed */
108 check_date_max(gmtime, "gmtime");
110 check_date_min(gmtime, "gmtime");
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dvmsish.t131 gmtime(0); # Force reset of tz offset
152 @vmsgmtime = gmtime($vmstime);
157 @utcgmtime = gmtime($vmstime);
179 ok(abs($vmsval - $utcval + $offset) <= 10, "(gmtime) UTC: $utcval VMS: $vmsval");
/openbsd-current/usr.sbin/dhcpd/
H A Ddb.c85 gmtime(&lease->starts));
90 gmtime(&lease->ends));
/openbsd-current/usr.bin/dig/lib/dns/
H A Ddns_time.c38 tm = gmtime(&t);
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dtime.t70 is(strftime("%Y\x{5e74}%m\x{6708}%d\x{65e5}", CORE::gmtime($jan_16)),
73 is(strftime("%Y\x{5e74}%m\x{6708}%d\x{65e5}", POSIX::gmtime($jan_16)),
H A Dusage.t19 getenv getgrgid getgrnam getpwnam getpwuid gmtime isatty
/openbsd-current/gnu/usr.bin/perl/dist/Locale-Maketext/t/
H A D01_about_verbose.t63 push @out, sprintf "[at %s (local) / %s (GMT)]\n", scalar(gmtime), scalar(localtime);
/openbsd-current/gnu/usr.bin/perl/t/porting/
H A Dcopyright.t46 my $current_year = (gmtime)[5] + 1900;
/openbsd-current/usr.bin/finger/
H A Dsprint.c154 delta = gmtime(&w->idletime);
/openbsd-current/usr.bin/last/
H A Dlast.c376 asctime(gmtime(&delta))+11);
381 asctime(gmtime(&delta))+11);
402 asctime(gmtime(&total))+11);
406 asctime(gmtime(&total))+11);
/openbsd-current/include/
H A Dtime.h117 struct tm *gmtime(const time_t *);
/openbsd-current/gnu/usr.bin/perl/cpan/Time-Local/t/
H A DLocal.t39 my $large_epoch_ok = eval { ( gmtime 2**40 )[5] == 34912 };
78 # more than 2**31 time_t - requires a 64bit safe localtime/gmtime
143 my @gt = gmtime($time);
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dvers_ts.c312 systems where gmtime returns NULL, the modification time is
315 tm_p = gmtime (&sb.st_mtime);
357 systems where gmtime returns NULL, the modification time is
360 tm_p = gmtime (&sb.st_mtime);

Completed in 308 milliseconds

1234