Searched refs:seconds (Results 226 - 250 of 471) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/lib/
H A Dtime.rb114 # Return the number of seconds the specified time zone differs
364 # %N :: Fractional seconds digits, default is 9 digits (nanosecond)
372 # %s :: Number of seconds since 1970-01-01 00:00:00 UTC.
395 if seconds = d[:seconds]
397 Time.at(seconds).localtime(offset)
399 Time.at(seconds)
622 # seconds. Its default value is 0.
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dunistd.h62 extern unsigned sleep _ANSI_ARGS_ ((unsigned seconds));
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dunistd.h62 extern unsigned sleep _ANSI_ARGS_ ((unsigned seconds));
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Drexecd.tcl14 return [clock format [clock seconds] -format {%Y%m%d %T}]
/macosx-10.10.1/tcl-105/tk/tk/compat/
H A Dunistd.h62 extern unsigned sleep _ANSI_ARGS_ ((unsigned seconds));
/macosx-10.10.1/tcl-105/tk84/tk/compat/
H A Dunistd.h62 extern unsigned sleep _ANSI_ARGS_ ((unsigned seconds));
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Dsignal.c420 unsigned int alarm(unsigned int seconds) { argument
439 if (!seconds){
447 (void*)UIntToPtr(seconds),
453 prev_val = seconds*1000;
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dgetdate.c250 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
256 long int seconds; member in struct:__anon8705
287 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
293 struct timespec seconds; /* includes nanoseconds */ member in struct:__anon8706
295 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
694 "relunit_snumber", "seconds", "signed_seconds", "unsigned_seconds",
1656 pc->seconds = (yyvsp[(2) - (2)].timespec);
1696 pc->seconds.tv_sec = 0;
1697 pc->seconds.tv_nsec = 0;
1707 pc->seconds
[all...]
/macosx-10.10.1/libresolv-57/
H A Dres_send.c1169 int resplen, seconds, ntry, n, s; local
1317 seconds = statp->retrans / ntry;
1318 if (seconds <= 0) seconds = 1;
1319 timeout.tv_sec = seconds;
1320 timeout.tv_nsec = ((statp->retrans - (seconds * ntry)) * 1000) / ntry;
1327 seconds = (statp->retrans << ns);
1328 if (ns > 0) seconds /= statp->nscount;
1329 if (seconds <= 0) seconds
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Drep005.tcl45 puts [clock format [clock seconds] -format "%H:%M %D"]
164 puts [clock format [clock seconds] -format "%H:%M %D"]
/macosx-10.10.1/Heimdal-398.1.2/appl/xnlock/
H A Dxnlock.c95 static int ALLOW_LOGOUT = (60*10); /* Allow logout after nn seconds */
540 time_t seconds; local
552 seconds = time(0) - locked_at;
553 if (seconds >= 3600)
556 (int)seconds/3600, (int)seconds/60%60, (int)seconds%60);
560 (int)seconds/60, (int)seconds%60);
/macosx-10.10.1/NFS-82/mount_nfs/
H A Dnfs_sys_prot.x47 int32_t seconds;
/macosx-10.10.1/Security-57031.1.35/Security/include/security_ocspd/
H A DocspdUtils.cpp56 * fractional seconds or time zone info, to a CFAbsoluteTime. Returns
267 int seconds = (int)greg.second; local
270 greg.minute, seconds);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ocspd/common/
H A DocspdUtils.cpp56 * fractional seconds or time zone info, to a CFAbsoluteTime. Returns
267 int seconds = (int)greg.second; local
270 greg.minute, seconds);
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSAccount.h182 bool SOSAccountCleanupAfterPeer(SOSAccountRef account, size_t seconds, SOSCircleRef circle,
185 bool SOSAccountCleanupRetirementTickets(SOSAccountRef account, size_t seconds, CFErrorRef* error);
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/makeCrl/
H A DmakeCrl.cpp33 printf(" -r revokeTime -- seconds after 'now' cert is revoked; default is %d\n",
35 printf(" -t thisUpdate -- CRL thisUpdate, seconds after 'now'; default is %d\n",
37 printf(" -n thisUpdate -- CRL nextUpdate, seconds after 'now'; default is %d\n",
43 /* seconds from now --> NSS_Time */
46 int seconds,
49 char *revocationDate = genTimeAtNowPlus(seconds);
112 int revokeTime, // revocation time, seconds from now (+/-)
113 int crlThisUpdate, // CRL thisUpdate, seconds from now (+/-)
114 int crlNextUpdate, // CRL nextUpdate, seconds from now (+/-)
45 secondsToNssTime( int seconds, NSS_Time *nssTime) argument
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DCurrentTime.cpp192 // make sure time doesn't run backwards (only correct if difference is < 2 seconds, since DST or clock changes could occur)
312 double time = info.user_time.seconds + info.user_time.microseconds / 1000000.;
313 time += info.system_time.seconds + info.system_time.microseconds / 1000000.;
/macosx-10.10.1/WTF-7600.1.24/wtf/gobject/
H A DGMainLoopSource.cpp167 void GMainLoopSource::scheduleAfterDelay(const char* name, std::function<void ()> function, std::chrono::seconds delay, int priority, std::function<void ()> destroyFunction, GMainContext* context)
176 void GMainLoopSource::scheduleAfterDelay(const char* name, std::function<bool ()> function, std::chrono::seconds delay, int priority, std::function<void ()> destroyFunction, GMainContext* context)
/macosx-10.10.1/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultFrameLoadDelegate.m75 - (void)webView:(WebView *)sender willPerformClientRedirectToURL:(NSURL *)URL delay:(NSTimeInterval)seconds fireDate:(NSDate *)date forFrame:(WebFrame *)frame
/macosx-10.10.1/WebKit2-7600.1.25/NetworkProcess/cocoa/
H A DNetworkProcessCocoa.mm128 auto deadDecodedDataDeletionInterval = std::chrono::seconds { 0 };
/macosx-10.10.1/bash-94.1.2/bash-3.2/support/
H A Dbashbug.sh245 echo "$0: The editor will be restarted in five seconds."
/macosx-10.10.1/bash-94.1.2/
H A Dbashbug245 echo "$0: The editor will be restarted in five seconds."
/macosx-10.10.1/cddafs-253/
H A DAppleCDDAFileSystemDefines.h68 kMSFToLBA = (kFramesPerSecond << 1) // 2 seconds
239 UInt8 seconds; member in struct:SubQTOCInfo::__anon6771::__anon6772
256 UInt8 seconds; member in struct:SubQTOCInfo::__anon6771::__anon6775
/macosx-10.10.1/ntp-92/include/
H A Dntp_machine.h290 extern void sleep (int seconds);
291 extern void alarm (int seconds);
/macosx-10.10.1/sudo-73/src/
H A Dsudoreplay.c208 static int parse_timing __P((const char *buf, const char *decimal, int *idx, double *seconds, size_t *nbytes));
242 double seconds, to_wait, speed = 1.0, max_wait = 0; local
395 if (!parse_timing(buf, decimal, &idx, &seconds, &nbytes))
402 to_wait = seconds / speed;
1112 * Where index is IOFD_*, sleep_time is the number of seconds to sleep
1117 parse_timing(buf, decimal, idx, seconds, nbytes)
1121 double *seconds;
1138 * Parse number of seconds. Sudo logs timing data in the C locale
1150 *seconds = (double)l;
1158 *seconds
[all...]

Completed in 378 milliseconds

1234567891011>>